Skip to content

Commit

Permalink
Merge pull request #253 from dansiegel/hotfix/missing-dll
Browse files Browse the repository at this point in the history
Fix missing dll
  • Loading branch information
dansiegel authored Jun 28, 2021
2 parents 7742989 + b8415d9 commit bdf8dd5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
using Foundation;

[assembly: LinkerSafe]
namespace Mobile.BuildTools.Configuration
{
public partial class ConfigurationManager
Expand All @@ -10,4 +7,4 @@ public partial class ConfigurationManager
public static void Init(bool enableRuntimeEnvironments) =>
InitInternal(enableRuntimeEnvironments, new AppleConfigManager());
}
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using Android;
using Android.App;
using Android.Content;

[assembly: LinkerSafe]
namespace Mobile.BuildTools.Configuration
{
public partial class ConfigurationManager
Expand All @@ -16,4 +14,4 @@ public partial class ConfigurationManager
public static void Init(bool enableRuntimeEnvironments, Context context) =>
InitInternal(enableRuntimeEnvironments, new AndroidConfigManager(context ?? Application.Context));
}
}
}
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net472</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsPackable>false</IsPackable>
<SignAssembly>true</SignAssembly>
<NoWarn>1701;1702;8632</NoWarn>
<IsPackable>false</IsPackable>
<PackFolder>build</PackFolder>
<PackBuildOutput>false</PackBuildOutput>
<IncludeSource>false</IncludeSource>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
Expand Down Expand Up @@ -106,7 +106,7 @@ public void ProcessCustomTokenizedVariables()
Assert.Equal("$TemplatedParameter$", json.TemplatedParameter);
}

//[Fact]
[Fact(Skip = "Dunno")]
public void ProcessingDoesNotCorruptAndroidManifest()
{
var config = GetConfiguration();
Expand Down

0 comments on commit bdf8dd5

Please sign in to comment.