Skip to content

Commit

Permalink
Changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jp2masa committed Jul 13, 2017
1 parent 84b0b01 commit 2348e07
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
4 changes: 3 additions & 1 deletion Tools/NASM/NASM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Diagnostics.Process" Version="4.3.0" />
<PackageReference Include="System.Diagnostics.Process" Version="4.3.0" />
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
<PackageReference Include="System.Net.Primitives" Version="4.3.0" />
</ItemGroup>

</Project>
5 changes: 0 additions & 5 deletions global.json

This file was deleted.

4 changes: 1 addition & 3 deletions source/Cosmos.IL2CPU/GCImplementationRefs.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using System;
using System.Reflection;

using Cosmos.Core.Common;

namespace Cosmos.IL2CPU
{
public static class GCImplementationRefs
Expand All @@ -13,7 +11,7 @@ public static class GCImplementationRefs

static GCImplementationRefs()
{
Type xType = typeof(GCImplementation);
Type xType = Type.GetType("Cosmos.Core.Common.GCImplementation, Cosmos.Core.Common", true);
if (xType == null)
{
throw new Exception("GCImplementation type not found!");
Expand Down

0 comments on commit 2348e07

Please sign in to comment.