Packager/AzuresPackager.csproj
azures04 c8fabe999e Initial commit with packager implementation
Add AzuresPackager project with .gitignore, solution and project files, core Packager.cs implementation, and sample source files. Implements basic package creation, extraction, and file handling using SharpCompress.
2026-01-26 23:20:34 +01:00

14 lines
452 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>AzuresPackager</PackageId>
<Version>1.0.0</Version>
<Authors>azures04</Authors>
<RepositoryUrl>https://gitea.azures.fr/Azures04/AzuresPackager</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SharpCompress" Version="0.30.0" />
</ItemGroup>
</Project>