diff options
Diffstat (limited to 'Aamukampa.Web/Aamukampa.Web.fsproj')
| -rw-r--r-- | Aamukampa.Web/Aamukampa.Web.fsproj | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Aamukampa.Web/Aamukampa.Web.fsproj b/Aamukampa.Web/Aamukampa.Web.fsproj new file mode 100644 index 0000000..b9bf516 --- /dev/null +++ b/Aamukampa.Web/Aamukampa.Web.fsproj @@ -0,0 +1,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> |
