Skip to content

Commit

Permalink
Minor updates (#1069)
Browse files Browse the repository at this point in the history
* - WIP

* - WIP

* - WIP

* - WIP

* - WIP
  • Loading branch information
tgiphil committed Jun 28, 2023
1 parent aa53e8c commit 1f42424
Show file tree
Hide file tree
Showing 17 changed files with 301 additions and 675 deletions.
2 changes: 1 addition & 1 deletion Source/Mosa.BareMetal.HelloWorld.x86/Boot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static class Boot
/// </summary>
public static void Main()
{
VGAText.Clear();
VGAText.Write((byte)'+');

while (true)
{ }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
<NoWarn>MSB3245</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Mosa.DeviceDriver\Mosa.DeviceDriver.csproj" />
<ProjectReference Include="..\Mosa.DeviceSystem\Mosa.DeviceSystem.csproj" />
<ProjectReference Include="..\Mosa.FileSystem\Mosa.FileSystem.csproj" />
<ProjectReference Include="..\Mosa.Kernel.BareMetal.x86\Mosa.Kernel.BareMetal.x86.csproj" />
<ProjectReference Include="..\Mosa.Kernel.BareMetal\Mosa.Kernel.BareMetal.csproj" />
<ProjectReference Include="..\Mosa.Korlib\Mosa.Korlib.csproj" />
Expand Down
55 changes: 26 additions & 29 deletions Source/Mosa.DeviceDriver/Mosa.DeviceDriver.csproj
Original file line number Diff line number Diff line change
@@ -1,31 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<DebugType>full</DebugType>
<LangVersion>11.0</LangVersion>
<OutputPath>..\..\bin\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DisableStandardFrameworkResolution>true</DisableStandardFrameworkResolution>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NuspecFile>Mosa.DeviceSystem.nuspec</NuspecFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile />
<CodeAnalysisRuleSet>..\Common.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DocumentationFile>..\..\bin\Mosa.DeviceDriver.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningLevel>2</WarningLevel>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Mosa.DeviceSystem\Mosa.DeviceSystem.csproj" />
<ProjectReference Include="..\Mosa.Korlib\Mosa.Korlib.csproj" />
<ProjectReference Include="..\Mosa.Runtime\Mosa.Runtime.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="PCI\AMD\AMDPCNetII.cs" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<DebugType>full</DebugType>
<LangVersion>11.0</LangVersion>
<OutputPath>..\..\bin\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DisableStandardFrameworkResolution>true</DisableStandardFrameworkResolution>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NuspecFile>Mosa.DeviceSystem.nuspec</NuspecFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile />
<CodeAnalysisRuleSet>..\Common.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DocumentationFile>..\..\bin\Mosa.DeviceDriver.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningLevel>2</WarningLevel>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Mosa.DeviceSystem\Mosa.DeviceSystem.csproj" />
<ProjectReference Include="..\Mosa.Korlib\Mosa.Korlib.csproj" />
<ProjectReference Include="..\Mosa.Runtime\Mosa.Runtime.csproj" />
</ItemGroup>
</Project>

0 comments on commit 1f42424

Please sign in to comment.