Created
August 30, 2020 17:35
-
-
Save smaglio81/a1fa775116878df77df2c9b7c996f315 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup Label="Globals"> | |
<GenerateDocumentationFile>true</GenerateDocumentationFile> | |
<NoWarn>$(NoWarn);CS1591;CA1724;CS1574</NoWarn> | |
<OutDir>$(MSBuildProjectDirectory)\bin\</OutDir> | |
</PropertyGroup> | |
<PropertyGroup> | |
<TargetFramework>net48</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.7" /> | |
<PackageReference Include="Microsoft.AspNet.TelemetryCorrelation" Version="1.0.8" /> | |
<PackageReference Include="Microsoft.AspNet.WebApi" Version="5.2.7" /> | |
<PackageReference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" Version="3.6.0" /> | |
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" /> | |
<PackageReference Include="Microsoft.Owin" Version="3.0.1" /> | |
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" /> | |
</ItemGroup> | |
<ItemGroup> | |
<Content Include="Web.Int.config"> | |
<DependentUpon>Web.config</DependentUpon> | |
</Content> | |
<Content Include="Web.QA.config"> | |
<DependentUpon>Web.config</DependentUpon> | |
</Content> | |
<Content Include="Web.Prod.config"> | |
<DependentUpon>Web.config</DependentUpon> | |
</Content> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment