| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <LangVersion>latest</LangVersion> |
| 6 | <Nullable>enable</Nullable> |
| 7 | <ImplicitUsings>enable</ImplicitUsings> |
| 8 | <OutputType>Exe</OutputType> |
| 9 | |
| 10 | <PackAsTool>true</PackAsTool> |
| 11 | <ToolCommandName>aid-publish</ToolCommandName> |
| 12 | <PackageId>AIGuiders.DotnetTools.PublishFixedTarget</PackageId> |
| 13 | <Authors>AIGuiders</Authors> |
| 14 | <Title>AIGuiders publish to fixed target</Title> |
| 15 | <Description>dotnet publish wrapper: mirror to fixed target, optional kill-locking process, and print proof timestamps.</Description> |
| 16 | <PackageTags>dotnet-tool;publish;deploy;robustness</PackageTags> |
| 17 | <PackageReadmeFile>README.md</PackageReadmeFile> |
| 18 | <PackageProjectUrl>https://github.com/AI-Guiders/AIGuiders.DotnetTools</PackageProjectUrl> |
| 19 | <RepositoryUrl>https://github.com/AI-Guiders/AIGuiders.DotnetTools</RepositoryUrl> |
| 20 | |
| 21 | <!-- Ensure runtimeconfig.json is included in tool package --> |
| 22 | <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> |
| 23 | </PropertyGroup> |
| 24 | |
| 25 | <ItemGroup> |
| 26 | <PackageReference Include="Ookii.CommandLine"> |
| 27 | <Version>5.0.0</Version> |
| 28 | </PackageReference> |
| 29 | </ItemGroup> |
| 30 | |
| 31 | <ItemGroup> |
| 32 | <None Include="README.md" Pack="true" PackagePath="" /> |
| 33 | <None Include="LICENSE" Pack="true" PackagePath="" /> |
| 34 | </ItemGroup> |
| 35 | |
| 36 | </Project> |
| 37 | |
| 38 | |