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.
28 lines
1013 B
28 lines
1013 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net7.0</TargetFramework> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<Nullable>enable</Nullable> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
<DefineConstants>TRACE;NO_SQL</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
<DefineConstants>TRACE;NO_SQL;</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Blazored.LocalStorage" Version="4.3.0-preview.1" /> |
|
<PackageReference Include="Microsoft.AspNetCore.Components.ProtectedBrowserStorage" Version="5.0.0-rc.1.20451.17" /> |
|
<PackageReference Include="Microsoft.JSInterop" Version="7.0.0-preview.2.22153.2" /> |
|
<PackageReference Include="YamlDotNet" Version="11.2.1" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\Model\Model.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|