|
@@ -1,5 +1,6 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
+ <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" />
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
|
<PropertyGroup>
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
@@ -33,11 +34,20 @@
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
</PropertyGroup>
|
|
|
<ItemGroup>
|
|
|
+ <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
|
+ <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
|
|
|
+ <Private>True</Private>
|
|
|
+ </Reference>
|
|
|
+ <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
|
+ <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath>
|
|
|
+ <Private>True</Private>
|
|
|
+ </Reference>
|
|
|
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
|
|
|
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
|
|
|
<Private>True</Private>
|
|
|
</Reference>
|
|
|
<Reference Include="System" />
|
|
|
+ <Reference Include="System.ComponentModel.DataAnnotations" />
|
|
|
<Reference Include="System.Configuration" />
|
|
|
<Reference Include="System.Core" />
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
@@ -53,6 +63,7 @@
|
|
|
</ItemGroup>
|
|
|
<ItemGroup>
|
|
|
<Compile Include="AppSettings.cs" />
|
|
|
+ <Compile Include="EFDatabase.cs" />
|
|
|
<Compile Include="JsonCurrentStats.cs" />
|
|
|
<Compile Include="Program.cs" />
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
@@ -62,4 +73,12 @@
|
|
|
<None Include="packages.config" />
|
|
|
</ItemGroup>
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
+ <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
|
|
+ <PropertyGroup>
|
|
|
+ <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}.</ErrorText>
|
|
|
+ </PropertyGroup>
|
|
|
+ <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.props'))" />
|
|
|
+ <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.targets'))" />
|
|
|
+ </Target>
|
|
|
+ <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.targets" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" />
|
|
|
</Project>
|