Skip to content

Commit bbeba33

Browse files
committed
Build fix
1 parent 2431667 commit bbeba33

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

buildBinaryDistribution.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ Copy-Item -Path "src\MyraPad\bin\Release\net8.0\StbImageSharp.dll" -Destination
4343
Copy-Item -Path "src\MyraPad\bin\Release\net8.0\StbTrueTypeSharp.dll" -Destination "ZipPackage"
4444
Copy-Item -Path "src\MyraPad\bin\Release\net8.0\Cyotek.Drawing.BitmapFont.dll" -Destination "ZipPackage"
4545
Copy-Item -Path "src\MyraPad\bin\Release\net8.0\AssetManagementBase.dll" -Destination "ZipPackage"
46-
Copy-Item -Path "src\MyraPad\bin\Release\net8.0\DdsKtxXna.dll" -Destination "ZipPackage"
4746
Copy-Item -Path "src\MyraPad\bin\Release\net8.0\XNAssets.MonoGame.dll" -Destination "ZipPackage"
4847
Copy-Item -Path "src\MyraPad\bin\Release\net8.0\info.lundin.math.dll" -Destination "ZipPackage"
4948
Copy-Item -Path "src\MyraPad\bin\Release\net8.0\MonoGame.Framework.dll" -Destination "ZipPackage"

samples/Myra.Samples.AssetManagement/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
using AssetManagementBase;
2+
using System;
23

34
namespace Myra.Samples.AssetManagement
45
{
@@ -8,6 +9,7 @@ static void Main(string[] args)
89
{
910
try
1011
{
12+
AMBConfiguration.Logger = Console.WriteLine;
1113
using (var game = new AssetManagementGame())
1214
game.Run();
1315
}

0 commit comments

Comments
 (0)