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.
64 lines
2.6 KiB
64 lines
2.6 KiB
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net7.0</TargetFramework> |
|
<Nullable>enable</Nullable> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest> |
|
</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="Markdig" Version="0.28.1" /> |
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.0-preview.2.22153.2" /> |
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.0-preview.2.22153.2" PrivateAssets="all" /> |
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="7.0.0-preview.2.22153.2" /> |
|
<!-- |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0-preview.2.22153.1" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="7.0.0-preview.2.22153.1" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0-preview.2.22153.1" /> |
|
<NativeFileReference Include="e_sqlite3.o" /> --> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\Components\Components.csproj" /> |
|
<ProjectReference Include="..\Contexts\Contexts.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>
|
|
|