19 lines
698 B
XML
19 lines
698 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<AssemblyName>CurrencyAPI.App</AssemblyName>
|
|
<EnableDefaultContentItems>false</EnableDefaultContentItems>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Currency.fs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="web.config" CopyToOutputDirectory="PreserveNewest" />
|
|
<Content Include="WebRoot\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
<Import Project="..\.paket\Paket.Restore.targets" />
|
|
</Project> |