-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathws-1044.fsproj
34 lines (28 loc) · 1.09 KB
/
ws-1044.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<WebSharperProject>Website</WebSharperProject>
<WebProjectOutputDir>$(MSBuildThisFileDirectory)/wwwroot</WebProjectOutputDir>
</PropertyGroup>
<ItemGroup>
<None Include=".dockerignore" />
<None Include=".gitignore" />
<Content Include="Dockerfile" />
<Compile Include="Remoting.fs" />
<Compile Include="Client.fs" />
<Compile Include="Site.fs" />
<Compile Include="Startup.fs" />
<Content Include="Main.html" CopyToPublishDirectory="Always" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" />
<PackageReference Include="WebSharper" Version="4.5.18.348" />
<PackageReference Include="WebSharper.FSharp" Version="4.5.18.348" />
<PackageReference Include="WebSharper.UI" Version="4.5.12.178" />
<PackageReference Include="WebSharper.AspNetCore" Version="4.5.4.109" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="4.7.0" />
</ItemGroup>
</Project>