mirror of
https://github.com/chylex/Query.git
synced 2025-05-19 07:34:06 +02:00
19 lines
506 B
XML
19 lines
506 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DebugType>none</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Base\Base.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|