28 lines
721 B
XML
28 lines
721 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup>
|
|
<UserSecretsId>PI</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>$(DefineConstants);MSSQL</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Web.LibraryManager.Build" Version="3.0.71" />
|
|
<PackageReference Include="Sieve" Version="2.5.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Events.EF\Events.EF.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|