Skip to content

Commit

Permalink
v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlacey committed Feb 15, 2025
1 parent 742b508 commit 5b047d0
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rapid XAML Toolkit - ChangeLog

## 2.0 (Feb 2025)
## 1.0 PREVIEW (Feb 2025)

- Support for Visual Studio 2022.
- Combined in to a single VSIX package.
Expand Down
2 changes: 1 addition & 1 deletion VSIX/RapidXamlToolkit/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ internal sealed partial class Vsix
public const string Name = "Rapid XAML Toolkit";
public const string Description = @"Tools to accelerate XAML app development.";
public const string Language = "en-US";
public const string Version = "0.9.0.5";
public const string Version = "1.0";
public const string Author = "Matt Lacey";
public const string Tags = "XAML;WPF;Uno;MVVM;MAUI;WinUI;DotNetMaui";
}
Expand Down
54 changes: 27 additions & 27 deletions VSIX/RapidXamlToolkit/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
<?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="RapidXamlToolkit.0dc8e86a-836b-47e5-aa3f-f5e71c15e37a" Version="0.9.0.5" Language="en-US" Publisher="Matt Lacey" />
<DisplayName>Rapid XAML Toolkit</DisplayName>
<Description xml:space="preserve">Tools to accelerate XAML app development.</Description>
<MoreInfo>https://github.com/mrlacey/Rapid-XAML-Toolkit</MoreInfo>
<License>LICENSE.txt</License>
<GettingStartedGuide>https://github.com/mrlacey/Rapid-XAML-Toolkit/tree/main/docs</GettingStartedGuide>
<ReleaseNotes>https://github.com/mrlacey/Rapid-XAML-Toolkit/blob/main/CHANGELOG.md</ReleaseNotes>
<Icon>Resources\RapidXamlToolkitLogo.png</Icon>
<Tags>XAML;WPF;Uno;MVVM;MAUI;WinUI;DotNetMaui</Tags>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.10, 18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Version="[17.10, 18.0)" Id="Microsoft.VisualStudio.Community">
<ProductArchitecture>arm64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[17.0,18.0)" DisplayName="Visual Studio core editor" />
</Prerequisites>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
<Asset Type="Microsoft.VisualStudio.Analyzer" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
</Assets>
<Metadata>
<Identity Id="RapidXamlToolkit.0dc8e86a-836b-47e5-aa3f-f5e71c15e37a" Version="1.0" Language="en-US" Publisher="Matt Lacey" />
<DisplayName>Rapid XAML Toolkit</DisplayName>
<Description xml:space="preserve">Tools to accelerate XAML app development.</Description>
<MoreInfo>https://github.com/mrlacey/Rapid-XAML-Toolkit</MoreInfo>
<License>LICENSE.txt</License>
<GettingStartedGuide>https://github.com/mrlacey/Rapid-XAML-Toolkit/tree/main/docs</GettingStartedGuide>
<ReleaseNotes>https://github.com/mrlacey/Rapid-XAML-Toolkit/blob/main/CHANGELOG.md</ReleaseNotes>
<Icon>Resources\RapidXamlToolkitLogo.png</Icon>
<Tags>XAML;WPF;Uno;MVVM;MAUI;WinUI;DotNetMaui</Tags>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.10, 18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Version="[17.10, 18.0)" Id="Microsoft.VisualStudio.Community">
<ProductArchitecture>arm64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[17.0,18.0)" DisplayName="Visual Studio core editor" />
</Prerequisites>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
<Asset Type="Microsoft.VisualStudio.Analyzer" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
</Assets>
</PackageManifest>

0 comments on commit 5b047d0

Please sign in to comment.