correct csproj -file

This commit is contained in:
stubbfel
2013-05-29 10:31:03 +02:00
parent db68565d94
commit 072da70474
4 changed files with 57 additions and 1 deletions

View File

@@ -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" />

View 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;
}
}
}
}

View 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
{
}
}

View 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);
}
}