-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyFullStack01.fsproj
35 lines (30 loc) · 1.35 KB
/
MyFullStack01.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
35
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="spa.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Compile Include="Calculator.fs" />
<Compile Include="Site.fs" />
<Compile Include="Startup.fs" />
<None Include="Main.html" CopyToPublishDirectory="Always" />
<None Include="wsconfig.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WebSharper" Version="7.0.6.456-beta5" />
<PackageReference Include="WebSharper.Charting" Version="7.0.5.454-beta5" />
<PackageReference Include="WebSharper.ChartJs" Version="7.0.5.454-beta5" />
<PackageReference Include="WebSharper.Forms" Version="7.0.4.454-beta5" />
<PackageReference Include="WebSharper.FSharp" Version="7.0.6.456-beta5" />
<PackageReference Include="WebSharper.MathJS" Version="7.0.6.454-beta5" />
<PackageReference Include="WebSharper.Plotly" Version="7.0.5.454-beta5" />
<PackageReference Include="WebSharper.UI" Version="7.0.4.456-beta5" />
<PackageReference Include="WebSharper.AspNetCore" Version="7.0.6.456-beta5" />
</ItemGroup>
<Target Name="ESBuildBundle" AfterTargets="WebSharperCompile" Condition=" '$(Configuration)' == 'Release' ">
<Exec Command="npm install" />
<Exec Command="node ./esbuild.config.mjs" />
</Target>
</Project>