Adding a new dotnet environment, supporting dotnet core 2.0. Project structure changed. Project.json was abandoned. Project.csproj is now used.
18 lines
674 B
XML
18 lines
674 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="2.0.0" />
|
|
<PackageReference Include="Nancy" Version="2.0.0-clinteastwood" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.3.2" />
|
|
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
|
|
<PackageReference Include="System.Runtime.Serialization.Json" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|