obsidian-web/obsidian.csproj
Curle b8da68566f Add a standard ASP.NET Core 2.2 WebApp.
All the files here were made by running the command
dotnet new webApp -o obsidian --no-https

HTTPS will be enforced net<->user by IIS, not by the web app itself.
2019-07-22 00:28:50 +01:00

15 lines
399 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App"/>
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
</ItemGroup>
</Project>