-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPackageInfo.targets
More file actions
42 lines (34 loc) · 1.58 KB
/
PackageInfo.targets
File metadata and controls
42 lines (34 loc) · 1.58 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project>
<PropertyGroup>
<Authors>Alexander Salamatov</Authors>
<Organization>everscale-actions</Organization>
<Owner>ch1seL</Owner>
<Copyright>Copyright 2023 (c) Alexander Salamatov. All rights reserved.</Copyright>
<Description>Everscale .Net Client</Description>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageTags>Everscale;Ever;Blazor;Rust;Wasm</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/everscale-actions/everscale-dotnet</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/everscale-actions/everscale-dotnet</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageVersion Condition=" $(PackageVersion) == '' ">$(SDK_Version)$(PackageVersionPostfix)</PackageVersion>
<AssemblyVersion Condition=" $(AssemblyVersion) == '' ">$(SDK_Version)</AssemblyVersion>
<RunNumber Condition=" $(RunNumber) == '' ">0</RunNumber>
<FileVersion Condition=" $(FileVersion) == '' ">$(SDK_Version).$(RunNumber)</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\icon.png" Pack="true" PackagePath="\">
<Visible>false</Visible>
</None>
</ItemGroup>
</Project>