exclude assets on release build

This commit is contained in:
2023-11-21 09:17:21 +01:00
parent c47366fcd1
commit 0d87c8f43b

View File

@@ -60,4 +60,14 @@
<PackageReference Include="Pilz.Updating" Version="2.0.0" /> <PackageReference Include="Pilz.Updating" Version="2.0.0" />
<PackageReference Include="Pilz.Updating.UpdateInstaller.Lib" Version="2.0.0" /> <PackageReference Include="Pilz.Updating.UpdateInstaller.Lib" Version="2.0.0" />
</ItemGroup> </ItemGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<ProjectReference>
<Private>false</Private>
<IncludeAssets>compile</IncludeAssets>
</ProjectReference>
<PackageReference>
<Private>false</Private>
<IncludeAssets>compile</IncludeAssets>
</PackageReference>
</ItemDefinitionGroup>
</Project> </Project>