-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTqlPackage.targets
More file actions
34 lines (28 loc) · 1.13 KB
/
TqlPackage.targets
File metadata and controls
34 lines (28 loc) · 1.13 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
<Project>
<Import Project="Tql.targets" />
<PropertyGroup>
<Version>0.0</Version>
<Authors>Pieter van Ginkel</Authors>
<Copyright>Copyright © 2023 Pieter van Ginkel</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>Logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/TQLApp/TQL</RepositoryUrl>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<Target Name="DeferredProperties" BeforeTargets="Build">
<PropertyGroup>
<Title Condition="'$(Title)' == ''">$(Product)</Title>
<PackageProjectUrl Condition="'$(PackageProjectUrl)' == ''">$(RepositoryUrl)</PackageProjectUrl>
</PropertyGroup>
</Target>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
<None Include="README.md" Pack="true" PackagePath=""/>
<None Include="..\..\Logo.png" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>