-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (20 loc) · 849 Bytes
/
Directory.Build.props
File metadata and controls
24 lines (20 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project>
<PropertyGroup>
<Authors>Dylan Briedis</Authors>
<Product>BlueBubbles API for .NET</Product>
<Copyright>Copyright © 2022 Dylan Briedis</Copyright>
<PackageIcon>PackageIcon.png</PackageIcon>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/dillydylann/BlueBubbles-API-NET</RepositoryUrl>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)Assets\icon-128.png" Pack="true" PackagePath="PackageIcon.png" />
<None Include="$(MSBuildThisFileDirectory)LICENSE.txt" Pack="true" PackagePath="LICENSE.txt" />
</ItemGroup>
<PropertyGroup>
<VersionPrefix>0.1.1</VersionPrefix>
<VersionSuffix>preview</VersionSuffix>
</PropertyGroup>
</Project>