.NET 8 migration; closes #10
This commit is contained in:
		
							parent
							
								
									4602bb14af
								
							
						
					
					
						commit
						a8121a306e
					
				@ -1,7 +1,7 @@
 | 
			
		||||
<Project Sdk="Microsoft.NET.Sdk">
 | 
			
		||||
 | 
			
		||||
    <PropertyGroup>
 | 
			
		||||
        <TargetFramework>net7.0</TargetFramework>
 | 
			
		||||
        <TargetFramework>net8.0</TargetFramework>
 | 
			
		||||
        <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
 | 
			
		||||
        <AssemblyVersion>1.1.2</AssemblyVersion>
 | 
			
		||||
        <FileVersion>1.1.2</FileVersion>
 | 
			
		||||
 | 
			
		||||
@ -66,7 +66,7 @@ public sealed class MultiThreadedRng<TNum> : IRandom<TNum>, IDisposable where TN
 | 
			
		||||
    private uint mZ;
 | 
			
		||||
        
 | 
			
		||||
    // This is the current buffer for the consumer side i.e. the public interfaces:
 | 
			
		||||
    private TNum[] currentBuffer = Array.Empty<TNum>();
 | 
			
		||||
    private TNum[] currentBuffer = [];
 | 
			
		||||
        
 | 
			
		||||
    // The current pointer to the next current buffer's address to read from:
 | 
			
		||||
    private int currentBufferPointer = BUFFER_SIZE;
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<Project Sdk="Microsoft.NET.Sdk">
 | 
			
		||||
 | 
			
		||||
    <PropertyGroup>
 | 
			
		||||
        <TargetFramework>net7.0</TargetFramework>
 | 
			
		||||
        <TargetFramework>net8.0</TargetFramework>
 | 
			
		||||
 | 
			
		||||
        <IsPackable>false</IsPackable>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user