23 lines
834 B
XML
23 lines
834 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Version>2.20.1</Version>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
<DebugSymbols>False</DebugSymbols>
|
|
<DebugType>None</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ZelWiki.Engine.Function\ZelWiki.Engine.Function.csproj" />
|
|
<ProjectReference Include="..\ZelWiki.Engine.Library\ZelWiki.Engine.Library.csproj" />
|
|
<ProjectReference Include="..\ZelWiki.Library\ZelWiki.Library.csproj" />
|
|
<ProjectReference Include="..\ZelWiki.Models\ZelWiki.Models.csproj" />
|
|
<ProjectReference Include="..\ZelWiki.Security\ZelWiki.Security.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|