aboutsummaryrefslogtreecommitdiff
path: root/TJLaskuri.Web/TJLaskuri.Web.fsproj
blob: 6cd06542ad215c6eda54c4d0645b9228c636733c (plain)
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
<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
    <TargetFramework>net9.0</TargetFramework>
  </PropertyGroup>

  <ItemGroup>
    <Compile Include="Modules/Index.fs" />
    <Compile Include="Program.fs" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\TJLaskuri.Core\TJLaskuri.Core.fsproj" />
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="Falco" Version="5.0.2" />
  </ItemGroup>

  <Target Name="CopyStaticAssets" BeforeTargets="Build">
    <Message Text="Copying static assets" />
    <Copy
      SourceFiles="../TJLaskuri.Frontend/dist/index.js"
      DestinationFiles="wwwroot/js/app.js"
    />
  </Target>

</Project>