-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnetpkg-tool.csproj
33 lines (29 loc) · 1.26 KB
/
netpkg-tool.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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>netpkg-tool</Title>
<AssemblyTitle>netpkg-tool</AssemblyTitle>
<Authors>Phil Hawkins</Authors>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<VersionPrefix>0.3.10</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<Description>Bundle .NET Core applications into convenient Linux binaries using appimagetool</Description>
<Copyright>MIT</Copyright>
<PackageProjectUrl>https://github.com/phil-harmoniq/netpkg-tool</PackageProjectUrl>
<RepositoryUrl>git://github.com/phil-harmoniq/netpkg-tool.git</RepositoryUrl>
<PackageLicenseUrl>https://github.com/phil-harmoniq/netpkg-tool/blob/master/LICENSE.md</PackageLicenseUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Shell.Net" Version="0.2.2"/>
<PackageReference Include="ConsoleColors" Version="0.1.10-alpha"/>
</ItemGroup>
<ItemGroup>
<Content Include="./file-transfer.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="./appimagetool/**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>