Skip to content

Commit

Permalink
Patch For VS 2022 17.3.6 TVOS bug (#3383)
Browse files Browse the repository at this point in the history
* Patch For VS 2022 17.3.6 TVOS bug

* Add null check to AppSupportJsonSuspensionDriver
  • Loading branch information
ChrisPulman committed Oct 11, 2022
1 parent e46157f commit eebbacf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
with:
configuration: Release
productNamespacePrefix: "ReactiveUI"
useVisualStudioPreview: false
useVisualStudioPreview: true
useMauiCheckDotNetTool: false
solutionFile: "reactiveui.sln"
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
configuration: Release
productNamespacePrefix: "ReactiveUI"
useVisualStudioPreview: false
useVisualStudioPreview: true
useMauiCheckDotNetTool: false
solutionFile: "reactiveui.sln"
secrets:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private static string CreateAppDirectory(NSSearchPathDirectory targetDir, string

var fm = new NSFileManager();
var url = fm.GetUrl(targetDir, NSSearchPathDomain.All, null, true, out err);
var ret = Path.Combine(url.RelativePath, NSBundle.MainBundle.BundleIdentifier, subDir);
var ret = Path.Combine(url.RelativePath!, NSBundle.MainBundle.BundleIdentifier, subDir);
if (!Directory.Exists(ret))
{
Directory.CreateDirectory(ret);
Expand Down

0 comments on commit eebbacf

Please sign in to comment.