-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathAspNetSimple.NetCore2.csproj
More file actions
32 lines (25 loc) · 1.14 KB
/
AspNetSimple.NetCore2.csproj
File metadata and controls
32 lines (25 loc) · 1.14 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition="$(IsR4MvcBuild) == ''">
<TargetFrameworks>net462;netcoreapp2.1</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="$(IsR4MvcBuild) != ''">
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup Condition="$(TargetFramework) == 'netcoreapp2.1'">
<PackageReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework) == 'net462'">
<PackageReference Include="Microsoft.AspNetCore" Version="2.1.7" />
<PackageReference Include="Microsoft.AspNetCore.CookiePolicy" Version="2.1.14" />
<PackageReference Include="Microsoft.AspNetCore.HttpsPolicy" Version="2.1.1"/>
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.3" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\R4Mvc\R4Mvc.csproj" />
<ProjectReference Include="..\SampleModels\SampleModels.csproj" />
</ItemGroup>
</Project>