2 Commits

Author SHA1 Message Date
ec3d8de187 сборкка Common
All checks were successful
CI / build-test (push) Successful in 26s
Release / pack-and-publish (release) Successful in 28s
2025-11-27 11:10:30 +03:00
4f17192c01 выключение генерации пакета
All checks were successful
CI / build-test (push) Successful in 29s
Release / pack-and-publish (release) Successful in 29s
2025-11-27 11:00:34 +03:00
2 changed files with 12 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@@ -11,7 +11,17 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\ReleaseUpdater.Common\ReleaseUpdater.Common.csproj" /> <ProjectReference Include="..\ReleaseUpdater.Common\ReleaseUpdater.Common.csproj"
PrivateAssets="none"
IncludeAssets="all"
/>
</ItemGroup> </ItemGroup>
<Target Name="CopyProjectReferencesToPackage" AfterTargets="Pack">
<ItemGroup>
<BuildOutputInPackage Include="$(OutputPath)ReleaseUpdater.Common.dll"
TargetPath="lib\net8.0\ReleaseUpdater.Common.dll" />
</ItemGroup>
</Target>
</Project> </Project>