blob: b9bf516f7a449bb83b9567f43b0941e4ab4941de (
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="..\Aamukampa.Core\Aamukampa.Core.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Falco" Version="5.0.2" />
</ItemGroup>
<Target Name="CopyStaticAssets" BeforeTargets="Build">
<Message Text="Copying static assets" />
<Copy
SourceFiles="../Aamukampa.Frontend/dist/index.js"
DestinationFiles="wwwroot/js/app.js"
/>
</Target>
</Project>
|