correct csproj -file
This commit is contained in:
@@ -115,8 +115,9 @@
|
||||
<Compile Include="model\BaseViewModel.cs" />
|
||||
<Compile Include="model\mensa\Food.cs" />
|
||||
<Compile Include="model\mensa\FoodDay.cs" />
|
||||
<Compile Include="pages\mensa\MensaFeed.cs" />
|
||||
<Compile Include="pages\mensa\MensaPage.xaml.cs">
|
||||
<DependentUpon>MensaPage.xaml</DependentUpon>
|
||||
<DependentUpon>MensaPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="pages\StartPage.xaml.cs">
|
||||
<DependentUpon>StartPage.xaml</DependentUpon>
|
||||
@@ -130,6 +131,8 @@
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>AppResources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="utility\Feed.cs" />
|
||||
<Compile Include="utility\URLList.cs" />
|
||||
<Compile Include="ViewModels\ItemViewModel.cs" />
|
||||
<Compile Include="ViewModels\MainViewModel.cs" />
|
||||
<Compile Include="model\mensa\MensaViewModel.cs" />
|
||||
|
||||
28
CampusAppWP8/CampusAppWP8/pages/mensa/MensaFeed.cs
Normal file
28
CampusAppWP8/CampusAppWP8/pages/mensa/MensaFeed.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using CampusAppWP8.utility;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CampusAppWP8.pages.mensa
|
||||
{
|
||||
public class MensaFeed : Feed
|
||||
{
|
||||
|
||||
private readonly Uri _feedUrl = URLList.MensaFeedURL;
|
||||
|
||||
public MensaFeed()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Uri FeedURL
|
||||
{
|
||||
get
|
||||
{
|
||||
return _feedUrl;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
12
CampusAppWP8/CampusAppWP8/utility/Feed.cs
Normal file
12
CampusAppWP8/CampusAppWP8/utility/Feed.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CampusAppWP8.utility
|
||||
{
|
||||
public abstract class Feed
|
||||
{
|
||||
}
|
||||
}
|
||||
13
CampusAppWP8/CampusAppWP8/utility/URLList.cs
Normal file
13
CampusAppWP8/CampusAppWP8/utility/URLList.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CampusAppWP8.utility
|
||||
{
|
||||
public static class URLList
|
||||
{
|
||||
public static Uri MensaFeedURL = new Uri("http://www.studentenwerk-frankfurt.de/2011/ClassPackage/App_IKMZ_BTU/", UriKind.Absolute);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user