mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 05:22:19 +00:00
- VBE (Bochs Graphic Adapter): made bitmap drawing faster using MemoryOperations.Copy - VBE (Bochs Graphic Adapter): made filled rectangle drawing faster using MemoryOperations.Fill - Created TestRunner for MemoryOperations
20 lines
760 B
XML
20 lines
760 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Cosmos.Common\Cosmos.Common.csproj" />
|
|
<ProjectReference Include="..\Cosmos.Core\Cosmos.Core.csproj" />
|
|
<ProjectReference Include="..\Cosmos.Core_Asm\Cosmos.Core_Asm.csproj" />
|
|
<ProjectReference Include="..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" />
|
|
<ProjectReference Include="$(IL2CPURepoRoot)source\IL2CPU.API\IL2CPU.API.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|