Fix System.CommandLine leaking locale files into output

see #3888
This commit is contained in:
YoshiRulz 2025-01-08 00:00:06 +10:00
parent 6ba50f5eb2
commit 6db32e9979
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 4 additions and 1 deletions

View File

@ -12,8 +12,8 @@
<PackageReference Include="Microsoft.Data.Sqlite.Core" />
<PackageReference Include="SharpCompress" />
<PackageReference Include="SQLitePCLRaw.provider.e_sqlite3" />
<PackageReference Include="System.CommandLine" PrivateAssets="all" GeneratePathProperty="true" />
<PackageReference Include="System.Drawing.Common" PrivateAssets="all" />
<PackageReference Include="System.CommandLine" />
<ProjectReference Include="$(ProjectDir)../BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj" />
<ProjectReference Include="$(ProjectDir)../BizHawk.Bizware.Graphics/BizHawk.Bizware.Graphics.csproj" />
<EmbeddedResource Include="Resources/**/*" />
@ -26,4 +26,7 @@
<Compile Update="movie/tasproj/TasMovie.Editing.cs" DependentUpon="TasMovie.cs" />
<Compile Update="movie/tasproj/TasMovie.IO.cs" DependentUpon="TasMovie.cs" />
</ItemGroup>
<Target Name="CopySystemCommandLineAssemblyOnly" AfterTargets="Build">
<Copy SourceFiles="$(PkgSystem_CommandLine)/lib/netstandard2.0/System.CommandLine.dll" DestinationFolder="$(OutputPath)" />
</Target>
</Project>