-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (30 loc) · 1.67 KB
/
Copy pathDirectory.Build.props
File metadata and controls
35 lines (30 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project>
<PropertyGroup>
<Version>3.0.83</Version>
<TargetFramework>net10.0</TargetFramework>
<MultiTargetFrameworks>net8.0;net9.0;net10.0</MultiTargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<PackageProjectUrl>https://github.com/lemonlion/Kronikol</PackageProjectUrl>
<RepositoryUrl>https://github.com/lemonlion/Kronikol</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Authors>Aryeh Citron</Authors>
<Copyright>Copyright (c) 2023-2026 Aryeh Citron</Copyright>
<PackageTags>testing;diagrams;bdd;plantuml;sequence-diagram;http-tracking;xunit;nunit;mstest;tunit;lightbdd;reqnroll</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>nuget-readme.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<!-- Generate XML documentation for all src projects (enables IntelliSense in NuGet consumers) -->
<PropertyGroup Condition="'$(IsTestProject)' != 'true' AND '$(IsPackable)' != 'false'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<!-- Include LICENSE, README, and icon in all NuGet packages -->
<ItemGroup Condition="'$(IsPackable)' != 'false' AND '$(IsTestProject)' != 'true'">
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="\" Link="LICENSE" />
<None Include="$(MSBuildThisFileDirectory)nuget-readme.md" Pack="true" PackagePath="\" Link="nuget-readme.md" />
<None Include="$(MSBuildThisFileDirectory)icon.png" Pack="true" PackagePath="\" Link="icon.png" />
</ItemGroup>
</Project>