mellinoe / veldrid-samples

Sample projects for Veldrid
https://mellinoe.github.io/veldrid-docs/
121 stars 49 forks source link

Vanila VS2019 can't process TexturedCube teture #16

Open gleblebedev opened 5 years ago

gleblebedev commented 5 years ago

I guess it depends on a certain version of .NET Core

1>------ Build started: Project: TexturedCube (TexturedCube\TexturedCube), Configuration: Debug Any CPU ------ 1>Executing: dotnet C:\github\veldrid-samples\bin/Debug/AssetProcessor/netcoreapp2.0/AssetProcessor.dll C:\github\veldrid-samples\bin\obj\TexturedCube\/ProcessedAssets C:\github\veldrid-samples\assets\sponza\spnza_bricks_a_diff.png 1>Processing C:\github\veldrid-samples\assets\sponza\spnza_bricks_a_diff.png 1> 1>Unhandled Exception: System.MissingMethodException: Method not found: 'System.Span1<!!1> System.MemoryExtensions.NonPortableCast(System.Span1<!!0>)'. 1> at SixLabors.ImageSharp.Memory.ArrayPoolMemoryManager.Buffer1.get_Span() 1> at SixLabors.ImageSharp.Image.<>c__DisplayClass0_0.<InternalDetectFormat>b__0(IImageFormatDetector x) 1> at System.Linq.Enumerable.SelectEnumerableIterator2.MoveNext() 1> at System.Linq.Enumerable.TryGetLast[TSource](IEnumerable1 source, Func2 predicate, Boolean& found) 1> at SixLabors.ImageSharp.Image.InternalDetectFormat(Stream stream, Configuration config) 1> at SixLabors.ImageSharp.Image.DiscoverDecoder(Stream stream, Configuration config, IImageFormat& format) 1> at SixLabors.ImageSharp.Image.Decode[TPixel](Stream stream, Configuration config) 1> at SixLabors.ImageSharp.Image.WithSeekableStream[T](Configuration config, Stream stream, Func2 action) 1> at SixLabors.ImageSharp.Image.Load[TPixel](Configuration config, Stream stream, IImageFormat& format) 1> at SixLabors.ImageSharp.Image.Load(Stream stream) 1> at AssetProcessor.ImageSharpProcessor.ProcessT(Stream stream, String extension) in C:\github\veldrid-samples\src\AssetProcessor\ImageSharpProcessor.cs:line 20 1> at AssetProcessor.BinaryAssetProcessor1.Process(Stream stream, String extension) in C:\github\veldrid-samples\src\AssetProcessor\BinaryAssetProcessor.cs:line 12 1> at AssetProcessor.Program.Main(String[] args) in C:\github\veldrid-samples\src\AssetProcessor\Program.cs:line 56 1>C:\github\veldrid-samples\Directory.Build.targets(13,5): error MSB3073: The command "dotnet C:\github\veldrid-samples\bin/Debug/AssetProcessor/netcoreapp2.0/AssetProcessor.dll C:\github\veldrid-samples\bin\obj\TexturedCube\/ProcessedAssets C:\github\veldrid-samples\assets\sponza\spnza_bricks_a_diff.png" exited with code -532462766. 1>Done building project "TexturedCube.csproj" -- FAILED.

gleblebedev commented 5 years ago

C:\github\veldrid-samples>dotnet --list-sdks 2.1.801 [C:\Program Files\dotnet\sdk] 2.2.401 [C:\Program Files\dotnet\sdk]

gleblebedev commented 5 years ago

Worked fine after .net core 2.0 installation. So it's a low priority issue. Just needs a clear message in case the .net core is missing.

RMSteenwijk commented 4 years ago

Updating the ImageSharp version to <PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0007" />

in the AssetProcessor project fixed that issue for me.