30 lines
1 KiB
XML
30 lines
1 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>Library</OutputType>
|
|||
|
|
<TargetFramework>net10.0</TargetFramework>
|
|||
|
|
<IsPackable>true</IsPackable>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
|
|||
|
|
<InternalsVisibleTo Include="Geekeey.Request.Result.Tests" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<PackageReadmeFile>package-readme.md</PackageReadmeFile>
|
|||
|
|
<PackageIcon>package-icon.png</PackageIcon>
|
|||
|
|
<PackageProjectUrl>https://code.geekeey.de/geekeey/request/src/branch/main/src/request.result</PackageProjectUrl>
|
|||
|
|
<PackageLicenseExpression>EUPL-1.2</PackageLicenseExpression>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Include=".\package-icon.png" Pack="true" PackagePath="\" Visible="false" />
|
|||
|
|
<None Include=".\package-readme.md" Pack="true" PackagePath="\" Visible="false" />
|
|||
|
|
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="\" Visible="false" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|