25 lines
802 B
XML
25 lines
802 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(StandardTestWebsiteTfms)</TargetFrameworks>
|
|
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
|
|
<IsTestAssetProject>true</IsTestAssetProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Controllers\*.fs" />
|
|
<Compile Include="Startup.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Mvc" />
|
|
|
|
<Reference Include="Microsoft.AspNetCore.Diagnostics" />
|
|
<Reference Include="Microsoft.AspNetCore.Server.IISIntegration" />
|
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
|
<Reference Include="Microsoft.AspNetCore.StaticFiles" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|