Skip to content

Commit

Permalink
Fix #180
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost1372 committed Mar 19, 2023
1 parent 451ae93 commit a6996cd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.4.4.0")]
[assembly: AssemblyFileVersion("3.4.4.0")]
[assembly: AssemblyVersion("3.4.5.0")]
[assembly: AssemblyFileVersion("3.4.5.0")]
27 changes: 22 additions & 5 deletions extension/visual studio/HandyControl/source.extension.vsixmanifest
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="16adb6c8-d74c-451c-9c7e-a93ef604d0b9" Version="3.4.4" Language="en-US" Publisher="Mahdi Hosseini" />
<Identity Id="16adb6c8-d74c-451c-9c7e-a93ef604d0b9" Version="3.4.5" Language="en-US" Publisher="Mahdi Hosseini" />
<DisplayName>HandyControl</DisplayName>
<Description xml:space="preserve">Contains some simple and commonly used WPF controls based on HandyControl
This VSIX Project will help people initialize a HandyControls project.</Description>
Expand All @@ -14,15 +14,32 @@ This VSIX Project will help people initialize a HandyControls project.</Descript
<Tags>WPF C# Control handycontrol dark theme light drawer sidemenu blurwindow badge</Tags>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0, 17.0)"/>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[15.0, 17.0)"/>
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[15.0, 17.0)"/>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,17.0)">
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0,19.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>

<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[15.0, 17.0)">
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[17.0, 19.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>

<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[15.0, 17.0)">
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[17.0, 19.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.0,)" />
</Dependencies>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,18.0)" DisplayName="Visual Studio core editor" />
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,19.0)" DisplayName="Visual Studio core editor" />
</Prerequisites>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
Expand Down

0 comments on commit a6996cd

Please sign in to comment.