Packager/BrikPackager.csproj

25 lines
882 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>BrikPackager</PackageId>
<Version>0.0.1</Version>
<Authors>Azures04</Authors>
<PackAsTool>false</PackAsTool>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PreserveCompilationContext>true</PreserveCompilationContext>
</PropertyGroup>
<Target Name="AddRuntimeDependencies" BeforeTargets="GenerateNuspec">
<ItemGroup>
<_PackageFiles Include="$(OutputPath)\*.dll" Exclude="$(OutputPath)\$(AssemblyName).dll" TargetPath="lib\$(TargetFramework)" />
</ItemGroup>
</Target>
<ItemGroup>
<PackageReference Include="SharpCompress" Version="0.44.4" />
</ItemGroup>
</Project>