23 lines
680 B
XML
23 lines
680 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>Exe</OutputType>
|
|||
|
|
<TargetFramework>net10.0</TargetFramework>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<PublishAot>true</PublishAot>
|
|||
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|||
|
|
<RootNamespace>Geekeey.Actions.Core</RootNamespace>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<ContainerRegistry>code.geekeey.de</ContainerRegistry>
|
|||
|
|
<ContainerRepository>actions/core</ContainerRepository>
|
|||
|
|
<ContainerImageTag>1.0.0</ContainerImageTag>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="System.CommandLine" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|