-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.targets
More file actions
22 lines (22 loc) · 1.08 KB
/
base.targets
File metadata and controls
22 lines (22 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<BaseOutputPath Condition="'$(BaseOutputPath)' == ''">bin</BaseOutputPath>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DocumentationFile Condition="'$(Configuration)' != 'Release'">$(BaseOutputPath)/$(Configuration)/$(TargetFramework)/$(AssemblyName).xml</DocumentationFile>
<DocumentationFile Condition="'$(Configuration)' == 'Release'">.publish/$(AssemblyName)/$(AssemblyName).xml</DocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Royal Code</Authors>
<Copyright>Royal Code Copyright © 2025</Copyright>
<RepositoryUrl>https://github.com/Royal-Code/Utils</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<Configurations>Debug;Release</Configurations>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="../icon.png" Pack="true" PackagePath="/"/>
<None Include="../../README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>