-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDirectory.Build.props
29 lines (29 loc) · 1.29 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
29
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Authors>Bonsai</Authors>
<Copyright>Copyright © Bonsai Foundation CIC and Contributors 2024</Copyright>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageOutputPath>..\bin\$(Configuration)</PackageOutputPath>
<PackageProjectUrl>https://bonsai-rx.org/machinelearning</PackageProjectUrl>
<RepositoryUrl>https://github.com/bonsai-rx/machinelearning.git</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<RepositoryType>git</RepositoryType>
<VersionPrefix>0.3.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<LangVersion>12.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="..\..\LICENSE" PackagePath="/" />
<Content Include="..\..\icon.png" PackagePath="/" />
<None Include="..\..\README.md" Pack="True" PackagePath="/" />
<EmbeddedResource Include="..\..\elementIcon.svg" >
<LogicalName>$(RootNamespace).$(MSBuildProjectName).svg</LogicalName>
</EmbeddedResource>
</ItemGroup>
</Project>