aspnetcore/src/Microsoft.DotNet.Web.Projec.../content/StarterWeb-FSharp/Company.WebApplication1.fsproj

33 lines
1.7 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework Condition="'$(Framework)' != 'netcoreapp1.1' AND '$(TargetFrameworkOverride)' == ''">netcoreapp1.0</TargetFramework>
<TargetFramework Condition="'$(Framework)' == 'netcoreapp1.1' AND '$(TargetFrameworkOverride)' == ''">netcoreapp1.1</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Controllers/*.fs" />
<Compile Include="Startup.fs" />
<Compile Include="Program.fs" />
<None Remove="**/*.fs" />
</ItemGroup>
<ItemGroup Condition="'$(Framework)' != 'netcoreapp1.1'">
<PackageReference Include="Microsoft.AspNetCore" Version="1.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.6" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.0.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.0.2" />
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="1.0.1" Condition="'$(UseBrowserLink)' == 'True'" />
</ItemGroup>
<ItemGroup Condition="'$(Framework)' == 'netcoreapp1.1'">
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.4" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.2" />
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="1.1.3" Condition="'$(UseBrowserLink)' == 'True'" />
</ItemGroup>
</Project>