You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.2 KiB
60 lines
2.2 KiB
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net8.0</TargetFramework> |
|
<Nullable>enable</Nullable> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest> |
|
<LangVersion>12</LangVersion> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
<DefineConstants>TRACE;NO_SQL</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
<DefineConstants>TRACE;NO_SQL</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup> |
|
<BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Blazor-Analytics" Version="3.11.0"/> |
|
<PackageReference Include="Markdig" Version="0.30.3"/> |
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.14"/> |
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.14"/> |
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="8.0.14"/> |
|
<PackageReference Include="MudBlazor" Version="8.5.1"/> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js"/> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\Components\Components.csproj"/> |
|
<ProjectReference Include="..\Model\Model.csproj"/> |
|
<ProjectReference Include="..\Services\Services.csproj"/> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Folder Include="wwwroot\generated"/> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<EmbeddedResource Update="Localizations.resx"> |
|
<Generator>ResXFileCodeGenerator</Generator> |
|
<LastGenOutput>Localizations.Designer.cs</LastGenOutput> |
|
</EmbeddedResource> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Compile Update="Localizations.Designer.cs"> |
|
<DesignTime>True</DesignTime> |
|
<AutoGen>True</AutoGen> |
|
<DependentUpon>Example.resx</DependentUpon> |
|
</Compile> |
|
</ItemGroup> |
|
</Project>
|
|
|