Skip to content

Commit

Permalink
add support for mono full runtime on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored May 10, 2020
1 parent fbdc866 commit eaf0192
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 60 deletions.
26 changes: 13 additions & 13 deletions src/AndroidApp/Resources/Resource.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/TextCopy/BashRunner.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if (NETSTANDARD)
#if (NETSTANDARD || NETFRAMEWORK)
using System;
using System.Diagnostics;
using System.Text;
Expand Down
21 changes: 0 additions & 21 deletions src/TextCopy/Clipboard_GetNet.cs

This file was deleted.

2 changes: 1 addition & 1 deletion src/TextCopy/Clipboard_GetStandard.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if (NETSTANDARD)
#if (NETSTANDARD || NETFRAMEWORK)
using System;
using System.Runtime.InteropServices;
using System.Threading;
Expand Down
21 changes: 0 additions & 21 deletions src/TextCopy/Clipboard_SetNet.cs

This file was deleted.

2 changes: 1 addition & 1 deletion src/TextCopy/Clipboard_SetStandard.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if (NETSTANDARD)
#if (NETSTANDARD || NETFRAMEWORK)
using System;
using System.Runtime.InteropServices;
using System.Threading;
Expand Down
2 changes: 1 addition & 1 deletion src/TextCopy/LinuxClipboard_2.0.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if (NETSTANDARD2_0)
#if (NETSTANDARD2_0 || NETFRAMEWORK)
using System.IO;
using System.Threading;
using System.Threading.Tasks;
Expand Down
2 changes: 1 addition & 1 deletion src/TextCopy/OsxClipboard.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if (NETSTANDARD)
#if (NETSTANDARD || NETFRAMEWORK)
using System;
using System.Runtime.InteropServices;
using System.Threading;
Expand Down
1 change: 1 addition & 0 deletions src/TextCopy/TextCopy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<DefineConstants>$(DefineConstants);IOS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" Condition="$(TargetFramework) == 'net461'" />
<WeaverFiles Include="$(SolutionDir)Weavers\bin\$(Configuration)\netstandard2.0\Weavers.dll" />
<PackageReference Include="Fody" Version="6.1.1" PrivateAssets="All" />
<PackageReference Include="ProjectDefaults" Version="1.0.42" PrivateAssets="All" />
Expand Down

0 comments on commit eaf0192

Please sign in to comment.