-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkaniko-remote.csproj
50 lines (45 loc) · 2.36 KB
/
kaniko-remote.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>Kaniko Remote</Title>
<Description>Build an image from a Dockerfile on a k8s cluster using kaniko</Description>
<PackageTags>kaniko;remote;docker build;tool;kubernetes</PackageTags>
<Authors>Lucas Sargent</Authors>
<PackageId>JJ11teen.KanikoRemote</PackageId>
<PackageProjectUrl>https://www.github.com/JJ11teen/kaniko-remote</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>KanikoRemote</RootNamespace>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifiers>linux-x64;linux-musl-x64;linux-arm;linux-arm64;win10-x64;win10-x86;win10-arm;win10-arm64;osx-x64;osx-arm64;</RuntimeIdentifiers>
<PublishTrimmed>true</PublishTrimmed>
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
<EventSourceSupport>false</EventSourceSupport>
<InvariantGlobalization>true</InvariantGlobalization>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitInfo" Version="2.2.0" />
<PackageReference Include="KubernetesClient" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="6.0.0" />
<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-beta4.22272.1" />
<PackageReference Include="YamlDotNet" Version="11.2.1" />
</ItemGroup>
<ItemGroup> <!-- unsure if this does anything/works? -->
<TrimmableAssembly Include="GitInfo" />
<!-- <TrimmableAssembly Include="KubernetesClient" /> -->
<TrimmableAssembly Include="Microsoft.Extensions.FileSystemGlobbing" />
<TrimmableAssembly Include="Microsoft.Extensions.Logging" />
<TrimmableAssembly Include="SharpZipLib" />
<TrimmableAssembly Include="System.CommandLine" />
<!-- <TrimmableAssembly Include="YamlDotNet" /> -->
</ItemGroup>
</Project>