-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVersion.proj
More file actions
27 lines (27 loc) · 1.35 KB
/
Version.proj
File metadata and controls
27 lines (27 loc) · 1.35 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
<Project>
<PropertyGroup>
<Authors>The Stirling Labs Team</Authors>
<Owners>Stirling Labs</Owners>
<Company>Stirling Labs</Company>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/StirlingLabs/MsQuic.Net.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/StirlingLabs/MsQuic.Net</PackageProjectUrl>
<description>
.NET wrapper around MsQuic, a cross-platform C implementation of the IETF QUIC protocol.
</description>
<GitDefaultBranch>main</GitDefaultBranch>
<GitCommitsIgnoreMerges>true</GitCommitsIgnoreMerges>
<VersionNetDebugImportance>high</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>