-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tools.InnoDownloadPlugin.csproj
33 lines (26 loc) · 1.25 KB
/
Tools.InnoDownloadPlugin.csproj
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
<Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<!-- The project system needs this. We don't. -->
<TargetFramework>netstandard1.3</TargetFramework>
<!-- Remove the <dependencies> tag from .nupkg, because it makes the package "depend" on our TargetPlatform. -->
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<!-- Package metadata -->
<Version>1.5.1</Version>
<IsPackable>true</IsPackable>
<IsTool>true</IsTool>
<IncludeSymbols>false</IncludeSymbols>
<Description>Inno Download Plugin by Mitrich Software, packaged for use in MSBuild projects.</Description>
<Authors>rdeago</Authors>
<Copyright>Copyright (c) 2013-2015 Mitrich Software</Copyright>
<PackageLicenseFile>tools\COPYING.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>setup installer innosetup</PackageTags>
<DevelopmentDependency>true</DevelopmentDependency>
</PropertyGroup>
<!-- Package contents -->
<ItemGroup>
<Content Include="README.md" PackagePath="%(Identity)" />
<Content Include="build\**\*" PackagePath="%(Identity)" />
<Content Include="tools\**\*" PackagePath="%(Identity)" />
</ItemGroup>
</Project>