Skip to content

Commit

Permalink
Revert the IsDeploySupported flag to default to true.
Browse files Browse the repository at this point in the history
  • Loading branch information
CartBlanche committed Jun 27, 2024
1 parent 4aefa4c commit 9dc8ea4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="VS_Meadow_Extension.2022.d5eb772d-2173-4795-b60b-67929a9bf12d" Version="1.9.7" Language="en-US" Publisher="Wilderness Labs" />
<Identity Id="VS_Meadow_Extension.2022.d5eb772d-2173-4795-b60b-67929a9bf12d" Version="1.9.8" Language="en-US" Publisher="Wilderness Labs" />
<DisplayName>VS 2022 Tools for Meadow</DisplayName>
<Description xml:space="preserve">Tools for developing Meadow applications</Description>
<Icon>wildernesslabs_icon.png</Icon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ internal class DeployProvider : IDeployProvider
private ConfiguredProject configuredProject;

const string MeadowSDKVersion = "Sdk=\"Meadow.Sdk/1.1.0\"";
private bool isDeploySupported = false;
private bool isDeploySupported = true;

[ImportingConstructor]
public DeployProvider(ConfiguredProject configuredProject)
Expand Down
2 changes: 1 addition & 1 deletion VS_Meadow_Extension/VS_Meadow_Extension.Shared/Globals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Meadow
{
public static class Globals
{
public const string AssemblyVersion = "1.9.7.0";
public const string AssemblyVersion = "1.9.8.0";

public const string MeadowCapability = "Meadow";

Expand Down

0 comments on commit 9dc8ea4

Please sign in to comment.