Skip to content

Commit bbeda14

Browse files
committed
More code clean-up
***NO_CI***
1 parent 279c2de commit bbeda14

File tree

7 files changed

+17
-3
lines changed

7 files changed

+17
-3
lines changed

nanoFramework.Runtime.Native/ExecutionConstraint.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4+
using System;
5+
using System.Runtime.CompilerServices;
6+
47
namespace nanoFramework.Runtime.Native
58
{
69
/// <summary>

nanoFramework.Runtime.Native/GC.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4+
using System.Runtime.CompilerServices;
5+
46
namespace nanoFramework.Runtime.Native
57
{
68
/// <summary>

nanoFramework.Runtime.Native/Power.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4+
using System.Runtime.CompilerServices;
5+
46
namespace nanoFramework.Runtime.Native
57
{
68
/// <summary>

nanoFramework.Runtime.Native/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using System.Reflection;
5-
using System.Runtime.InteropServices;
6-
74
// General Information about an assembly is controlled through the following
85
// set of attributes. Change these attribute values to modify the information
96
// associated with an assembly.
7+
using System.Reflection;
8+
using System.Runtime.InteropServices;
9+
1010
[assembly: AssemblyTitle("nanoFramework.Runtime.Native")]
1111
[assembly: AssemblyCompany("nanoFramework Contributors")]
1212
[assembly: AssemblyProduct("nanoFramework.Runtime.Native")]

nanoFramework.Runtime.Native/RTC.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4+
using System.Runtime.CompilerServices;
5+
46
namespace nanoFramework.Runtime.Native
57
{
68
/// <summary>

nanoFramework.Runtime.Native/System/Environment.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4+
using System.Runtime.CompilerServices;
5+
46
namespace System
57
{
68
/// <summary>

nanoFramework.Runtime.Native/SystemInfo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4+
using System;
5+
using System.Runtime.CompilerServices;
6+
47
namespace nanoFramework.Runtime.Native
58
{
69
/// <summary>

0 commit comments

Comments
 (0)