-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathVersion.proj
28 lines (28 loc) · 1.33 KB
/
Version.proj
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
<Project>
<PropertyGroup>
<Authors>StirlingLabs, Starnick
</Authors>
<Owners>Stirling Labs</Owners>
<Company>Stirling Labs</Company>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/StirlingLabs/Assimp.Net.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/StirlingLabs/Assimp.Net</PackageProjectUrl>
<description>
Cross-platform .Net wrapper for the Open Asset Import Library.
</description>
<GitDefaultBranch>main</GitDefaultBranch>
<GitCommitsIgnoreMerges>true</GitCommitsIgnoreMerges>
<VersionNetDebugImportance>low</VersionNetDebugImportance>
<PackageLicenseFile>License.txt</PackageLicenseFile>
<PackageIcon>SL.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ImportGroup>
<Import Project="StirlingLabs.Version/Version.proj" />
</ImportGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)License.txt" Pack="true" PackagePath="License.txt" Visible="false"/>
<None Include="$(MSBuildThisFileDirectory)SL.png" Pack="true" PackagePath="SL.png" Visible="false"/>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="README.md" Visible="false"/>
</ItemGroup>
</Project>