Skip to content

Commit d26264e

Browse files
Fixed issue with build window button being disabled if no wsa cert found. (It's auto generated by default build anyway)
1 parent e89b5ba commit d26264e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Assets/HoloToolkit/BuildAndDeploy/Editor/BuildDeployWindow.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,7 @@ private static bool ShouldOpenSLNBeEnabled
9999

100100
private static bool ShouldBuildSLNBeEnabled
101101
{
102-
get
103-
{
104-
return !string.IsNullOrEmpty(BuildDeployPrefs.BuildDirectory) &&
105-
!string.IsNullOrEmpty(PlayerSettings.WSA.certificatePath);
106-
}
102+
get { return !string.IsNullOrEmpty(BuildDeployPrefs.BuildDirectory); }
107103
}
108104

109105
private static bool ShouldBuildAppxBeEnabled

0 commit comments

Comments
 (0)