47 lines
1.5 KiB
XML
47 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<SupportedPlatform Include="browser" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.7" />
|
|
<PackageReference Include="MudBlazor" Version="8.15.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DeepDrftModels\DeepDrftModels.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.9.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<Folder Include="wwwroot\js\" />
|
|
</ItemGroup>
|
|
|
|
<!-- TypeScript configuration following Microsoft recommendations -->
|
|
<PropertyGroup>
|
|
<TypeScriptCompileOnSaveEnabled>false</TypeScriptCompileOnSaveEnabled>
|
|
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
|
|
<TypeScriptESModuleInterop>true</TypeScriptESModuleInterop>
|
|
<TypeScriptAllowSyntheticDefaultImports>true</TypeScriptAllowSyntheticDefaultImports>
|
|
</PropertyGroup>
|
|
|
|
<!-- Prevent tsconfig.json from being copied to output directories -->
|
|
<ItemGroup>
|
|
<Content Update="tsconfig.json">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|