-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Build.props
28 lines (27 loc) · 1.26 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Authors>Bonsai</Authors>
<PackageIcon>icon.png</PackageIcon>
<Description>A tool for automatically generating YML serialization classes from schema files.</Description>
<ToolCommandName>bonsai.sgen</ToolCommandName>
<PackageTags>Bonsai Rx Sgen Schema Serializer Generators</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Copyright>Copyright © Bonsai Foundation CIC 2023</Copyright>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<PackageOutputPath>..\bin\$(Configuration)</PackageOutputPath>
<PackageProjectUrl>https://bonsai-rx.org/sgen</PackageProjectUrl>
<RepositoryUrl>https://github.com/bonsai-rx/sgen.git</RepositoryUrl>
<VersionSuffix></VersionSuffix>
<IncludeSymbols>true</IncludeSymbols>
<RepositoryType>git</RepositoryType>
<PackAsTool>true</PackAsTool>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<Content Include="..\LICENSE" PackagePath="/" />
<Content Include="..\icon.png" PackagePath="/" />
<Content Include="..\README.md" PackagePath="/" />
</ItemGroup>
</Project>