- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeFirstExample.csproj
More file actions
Latest commit
66 lines (66 loc) · 3.83 KB
/
Copy pathCodeFirstExample.csproj
File metadata and controls
66 lines (66 loc) · 3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>
<ProjectToolsVersion="15.0"xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportProject="..\..\packages\EntityFramework.6.5.1\build\EntityFramework.props"Condition="Exists('..\..\packages\EntityFramework.6.5.1\build\EntityFramework.props')" />
<ImportProject="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<ConfigurationCondition=" '$(Configuration)' == '' ">Debug</Configuration>
<PlatformCondition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{88DAE685-A8F7-4D85-B2F7-4F03E9137668}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>CodeFirstExample</RootNamespace>
<AssemblyName>CodeFirstExample</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<NoneInclude="App.config" />
<NoneInclude="packages.config" />
</ItemGroup>
<ItemGroup>
<CompileInclude="DBContext\WorldCountries.cs" />
<CompileInclude="Entities\Country.cs" />
<CompileInclude="Program.cs" />
</ItemGroup>
<ItemGroup>
<ReferenceInclude="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\..\packages\EntityFramework.6.5.1\lib\net45\EntityFramework.dll</HintPath>
</Reference>
<ReferenceInclude="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\..\packages\EntityFramework.6.5.1\lib\net45\EntityFramework.SqlServer.dll</HintPath>
</Reference>
<ReferenceInclude="System" />
<ReferenceInclude="System.ComponentModel.DataAnnotations" />
</ItemGroup>
<ImportProject="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<TargetName="EnsureNuGetPackageBuildImports"BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<ErrorCondition="!Exists('..\..\packages\EntityFramework.6.5.1\build\EntityFramework.props')"Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\EntityFramework.6.5.1\build\EntityFramework.props'))" />
<ErrorCondition="!Exists('..\..\packages\EntityFramework.6.5.1\build\EntityFramework.targets')"Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\EntityFramework.6.5.1\build\EntityFramework.targets'))" />
</Target>
<ImportProject="..\..\packages\EntityFramework.6.5.1\build\EntityFramework.targets"Condition="Exists('..\..\packages\EntityFramework.6.5.1\build\EntityFramework.targets')" />
</Project>