-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Maximilien Noal <[email protected]>
- Loading branch information
1 parent
a5a6dae
commit aff908f
Showing
15 changed files
with
121 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,29 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<TargetFramework>net9.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<EnablePackageValidation>true</EnablePackageValidation> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<WarningsAsErrors>nullable</WarningsAsErrors> | ||
<NoWarn>$(NoWarn);NU1507</NoWarn> | ||
</PropertyGroup> | ||
<!-- Source Link configuration --> | ||
<PropertyGroup> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
<!-- Nuget package info--> | ||
<PropertyGroup> | ||
<Version>7.0.0</Version> | ||
<PackageReleaseNotes>Some breaking API changes (SegmentRegisters.cs), WIP new CFG_CPU, addtionnal memory/disasm views to the internal debugger, replaced UI DI framework with Microsoft.DI.</PackageReleaseNotes> | ||
<Authors>Kevin Ferrare, Maximilien Noal, Joris van Eijden, Artjom Vejsel</Authors> | ||
<PackageTags>reverse-engineering;avalonia;debugger;assembly;emulator;cross-platform</PackageTags> | ||
<Description>Reverse engineer and rewrite real mode dos programs</Description> | ||
<PackageProjectUrl>https://github.com/OpenRakis/Spice86</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/OpenRakis/Spice86</RepositoryUrl> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,65 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<NoWarn>1591;1572;1573;1570;1587;1574</NoWarn> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Using Remove="System.Linq" /> | ||
<Using Include="System.Buffers.Binary" /> | ||
<Using Include="CommunityToolkit.HighPerformance" /> | ||
<Using Include="Spice86.Core.CLI" /> | ||
<Using Remove="System.Linq" /> | ||
<Using Include="System.Buffers.Binary" /> | ||
<Using Include="CommunityToolkit.HighPerformance" /> | ||
<Using Include="Spice86.Core.CLI" /> | ||
</ItemGroup> | ||
<!-- Properties geared towards NuGet --> | ||
<PropertyGroup> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<version>7.0.0</version> | ||
<Authors>Kevin Ferrare, Maximilien Noal, Joris van Eijden, Artjom Vejsel</Authors> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<Description>Reverse engineer and rewrite real mode dos programs</Description> | ||
<PackageProjectUrl>https://github.com/OpenRakis/Spice86</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/OpenRakis/Spice86</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
<!-- Source Link configuration --> | ||
<PropertyGroup> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> | ||
<PackageId>Spice86.Core</PackageId> | ||
</PropertyGroup> | ||
<!-- Moxy configuration --> | ||
<PropertyGroup> | ||
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> | ||
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<AdditionalFiles Include="Emulator/CPU/CfgCpu/ParsedInstruction/Instructions/Mixins/*.mixin" /> | ||
<AdditionalFiles Include="Emulator/CPU/CfgCpu/Parser/SpecificParsers/Mixin/*.mixin" /> | ||
<AdditionalFiles Include="Emulator/CPU/CfgCpu/ParsedInstruction/Instructions/Mixins/*.mixin" /> | ||
<AdditionalFiles Include="Emulator/CPU/CfgCpu/Parser/SpecificParsers/Mixin/*.mixin" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CommunityToolkit.HighPerformance" /> | ||
<PackageReference Include="JetBrains.Annotations" /> | ||
<PackageReference Include="Newtonsoft.Json" /> | ||
<PackageReference Include="Serilog" /> | ||
<PackageReference Include="Serilog.Sinks.Console" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" /> | ||
<PackageReference Include="System.Buffers" /> | ||
<PackageReference Include="System.IO" /> | ||
<PackageReference Include="System.IO.UnmanagedMemoryStream" /> | ||
<PackageReference Include="System.Memory" /> | ||
<PackageReference Include="System.Memory.Data" /> | ||
<PackageReference Include="System.Text.Encoding.CodePages" /> | ||
<PackageReference Include="CommandLineParser" /> | ||
<!--WARNING: No Mac OS support (MUNT needs to be build and included for this platform)--> | ||
<PackageReference Include="Mt32emu.net" /> | ||
<PackageReference Include="MeltySynth" /> | ||
<PackageReference Include="Morris.Moxy" /> | ||
<PackageReference Include="CommunityToolkit.HighPerformance" /> | ||
<PackageReference Include="JetBrains.Annotations" /> | ||
<PackageReference Include="Newtonsoft.Json" /> | ||
<PackageReference Include="Serilog" /> | ||
<PackageReference Include="Serilog.Sinks.Console" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" /> | ||
<PackageReference Include="System.Buffers" /> | ||
<PackageReference Include="System.IO" /> | ||
<PackageReference Include="System.IO.UnmanagedMemoryStream" /> | ||
<PackageReference Include="System.Memory" /> | ||
<PackageReference Include="System.Memory.Data" /> | ||
<PackageReference Include="System.Text.Encoding.CodePages" /> | ||
<PackageReference Include="CommandLineParser" /> | ||
<!--WARNING: No Mac OS support (MUNT needs to be build and included for this platform)--> | ||
<PackageReference Include="Mt32emu.net" /> | ||
<PackageReference Include="MeltySynth" /> | ||
<PackageReference Include="Morris.Moxy" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Bufdio.Spice86\Bufdio.Spice86.csproj" /> | ||
<ProjectReference Include="..\Spice86.Logging\Spice86.Logging.csproj" /> | ||
<ProjectReference Include="..\Spice86.Shared\Spice86.Shared.csproj" /> | ||
<ProjectReference Include="..\Bufdio.Spice86\Bufdio.Spice86.csproj" /> | ||
<ProjectReference Include="..\Spice86.Logging\Spice86.Logging.csproj" /> | ||
<ProjectReference Include="..\Spice86.Shared\Spice86.Shared.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="Resources\2MGM.license"> | ||
<Link>2MGM.license</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Resources\2MGM.sf2"> | ||
<Link>2MGM.sf2</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Resources\2MGM.license"> | ||
<Link>2MGM.license</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Resources\2MGM.sf2"> | ||
<Link>2MGM.sf2</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>Spice86.Tests</_Parameter1> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>DynamicProxyGenAssembly2</_Parameter1> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>Spice86.Tests</_Parameter1> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>DynamicProxyGenAssembly2</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<!-- Properties geared towards NuGet --> | ||
<PropertyGroup> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<version>7.0.0</version> | ||
<Authors>Kevin Ferrare, Maximilien Noal, Joris van Eijden, Artjom Vejsel</Authors> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<Description>Reverse engineer and rewrite real mode dos programs</Description> | ||
<PackageProjectUrl>https://github.com/OpenRakis/Spice86</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/OpenRakis/Spice86</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
<!-- Source Link configuration --> | ||
<PropertyGroup> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> | ||
<PackageId>Spice86.Logging</PackageId> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Serilog" /> | ||
<PackageReference Include="Serilog.Sinks.Console" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" /> | ||
<PackageReference Include="Serilog.Sinks.File" /> | ||
<PackageReference Include="Serilog" /> | ||
<PackageReference Include="Serilog.Sinks.Console" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" /> | ||
<PackageReference Include="Serilog.Sinks.File" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Spice86.Shared\Spice86.Shared.csproj" /> | ||
<ProjectReference Include="..\Spice86.Shared\Spice86.Shared.csproj" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,12 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<!-- Properties geared towards NuGet --> | ||
<PropertyGroup> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<version>7.0.0</version> | ||
<Authors>Kevin Ferrare, Maximilien Noal, Joris van Eijden, Artjom Vejsel</Authors> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<Description>Reverse engineer and rewrite real mode dos programs</Description> | ||
<PackageProjectUrl>https://github.com/OpenRakis/Spice86</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/OpenRakis/Spice86</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
<!-- Source Link configuration --> | ||
<PropertyGroup> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> | ||
<PackageId>Spice86.Shared</PackageId> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Avalonia" /> | ||
<PackageReference Include="Serilog" /> | ||
<PackageReference Include="Serilog.Sinks.Console" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" /> | ||
<PackageReference Include="Avalonia" /> | ||
<PackageReference Include="Serilog" /> | ||
<PackageReference Include="Serilog.Sinks.Console" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.