-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZeroInstall.Publish.Cli.csproj
56 lines (48 loc) · 2.05 KB
/
ZeroInstall.Publish.Cli.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Build configuration -->
<LangVersion>12.0</LangVersion>
<TargetFramework>net472</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>annotations</Nullable>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn><!-- Missing XML comments -->
<SatelliteResourceLanguages>es;el;fr;it;ja;nl;pt-BR;pt-PT;ro;ru;tr;zh;zh-Hant</SatelliteResourceLanguages>
<!-- Project properties -->
<AssemblyName>0publish</AssemblyName>
<ApplicationManifest>app.manifest</ApplicationManifest>
<OutputType>Exe</OutputType>
<OutputPath>..\artifacts\$(Configuration)\</OutputPath>
<!-- Metadata -->
<Description>Utility for creating and modifying Zero Install feeds.</Description>
<Copyright>Copyright Bastian Eicher et al.</Copyright>
<RepositoryUrl>https://github.com/0install/0publish-dotnet</RepositoryUrl>
<!-- Dummy version number, overridden by GitVersion -->
<Version>1.0.0-pre</Version>
</PropertyGroup>
<!-- Dependencies -->
<ItemGroup>
<PackageReference Include="NanoByte.Common.AnsiCli" Version="2.19.1" />
<PackageReference Include="ZeroInstall.Publish" Version="2.26.0" />
<PackageReference Include="NDesk.Options.Patched" Version="0.3.2" />
</ItemGroup>
<!-- Files to include with output -->
<ItemGroup>
<Content Include="..\COPYING.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<!-- Embedded resources -->
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>