Created
October 17, 2019 21:25
-
-
Save robertmclaws/f5ec27162a749056e43967b64f7ebf2a 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.Web"> | |
<PropertyGroup Label="Globals"> | |
<SccProjectName>SAK</SccProjectName> | |
<SccProvider>SAK</SccProvider> | |
<SccAuxPath>SAK</SccAuxPath> | |
<SccLocalPath>SAK</SccLocalPath> | |
<Configurations>Debug;Release;WEB-DEV;WEB-PROD</Configurations> | |
</PropertyGroup> | |
<PropertyGroup> | |
<TargetFramework>net472</TargetFramework> | |
<OutputType>Library</OutputType> | |
<OutputPath>bin\</OutputPath> | |
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | |
<RunCommand>$(MSBuildExtensionsPath64)\..\IIS Express\iisexpress</RunCommand> | |
<RunArguments>/path:"$(MSBuildProjectDirectory)" /port:1710</RunArguments> | |
<IsPackable>true</IsPackable> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.7" /> | |
<PackageReference Include="Microsoft.AspNet.OData" Version="7.2.2" /> | |
<PackageReference Include="Microsoft.AspNet.WebApi.Cors" Version="5.2.7" /> | |
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.0.0" /> | |
<PackageReference Include="Microsoft.Owin.Cors" Version="4.0.1" /> | |
<PackageReference Include="Microsoft.Owin.Host.SystemWeb" Version="4.0.1" /> | |
<PackageReference Include="Microsoft.Restier.AspNet" Version="1.0.0-rc1.20191003.1" /> | |
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" /> | |
<PackageReference Include="RestierEssentials" Version="1.0.0-CI-20190813-062036" /> | |
</ItemGroup> | |
<ItemGroup> | |
<Reference Include="System.Web" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment