-
Notifications
You must be signed in to change notification settings - Fork 2
/
konet.csproj
38 lines (34 loc) · 1.7 KB
/
konet.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>konet</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageId>konet</PackageId>
<Version>0.0.5</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>images/logo.png</PackageIcon>
<PackageReadmeFile>docs/README.md</PackageReadmeFile>
<Authors>lippertmarkus</Authors>
<PackageProjectUrl>https://github.com/lippertmarkus/konet</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>main</RepositoryBranch>
<RepositoryUrl>https://github.com/lippertmarkus/konet.git</RepositoryUrl>
<Description>Build multi-arch container images for .NET applications</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
<PackageTags>konet crane tool container image kubernetes</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="images/logo.png" Pack="true" PackagePath="images/" />
<None Include="README.md" Pack="true" PackagePath="docs/" />
<PackageReference Include="konet.crane" Version="0.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
<PackageReference Include="SharpZipLib" Version="1.3.3" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
</ItemGroup>
</Project>