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.
38 lines
1.2 KiB
38 lines
1.2 KiB
<Project Sdk="Microsoft.NET.Sdk.Razor"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net7.0</TargetFramework> |
|
<Nullable>enable</Nullable> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
<DefineConstants>TRACE;NO_SQL</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
<DefineConstants>TRACE;NO_SQL</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<SupportedPlatform Include="browser" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Markdig" Version="0.28.1" /> |
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.0-preview.2.22153.2" /> |
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="7.0.0-preview.2.22153.2" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Folder Include="Inputs\" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\Model\Model.csproj" /> |
|
<ProjectReference Include="..\Services\Services.csproj" /> |
|
</ItemGroup> |
|
<ItemGroup> |
|
<None Remove="Inputs\" /> |
|
</ItemGroup> |
|
</Project>
|
|
|