a5b7ab041e
- Front End Cleanup
55 lines
2.2 KiB
XML
55 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.8">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.8">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<ProjectReference Include="..\DeepDrftModels\DeepDrftModels.csproj" />
|
|
<ProjectReference Include="..\DeepDrftWeb.Client\DeepDrftWeb.Client.csproj" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="9.*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.9.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<Folder Include="wwwroot\js\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<TypeScriptCompile Include="Interop\webaudio.ts">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</TypeScriptCompile>
|
|
</ItemGroup>
|
|
|
|
<!-- Prevent TypeScript compilation issues during publish -->
|
|
<PropertyGroup>
|
|
<TypeScriptCompileOnSaveEnabled>false</TypeScriptCompileOnSaveEnabled>
|
|
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
|
|
</PropertyGroup>
|
|
|
|
<!-- Only copy tsconfig.json to root output, not nested publish folders -->
|
|
<ItemGroup>
|
|
<None Update="tsconfig.json">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project> |