2024-07-24 11:30:59 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
|
|
|
<AssemblyName>Nuclex.Support</AssemblyName>
|
|
|
|
|
<RootNamespace>Nuclex.Support</RootNamespace>
|
2024-07-24 12:10:08 +00:00
|
|
|
|
<IntermediateOutputPath>obj\source</IntermediateOutputPath>
|
2024-07-24 11:30:59 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Tests\**" />
|
|
|
|
|
<EmbeddedResource Remove="Tests\**" />
|
|
|
|
|
<None Remove="Tests\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove=".git" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|