Skip to content

Commit

Permalink
Update VSIX
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost1372 committed Aug 22, 2022
1 parent 92327ae commit 65894a5
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 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.1.0")]
[assembly: AssemblyFileVersion("3.4.1.0")]
[assembly: AssemblyVersion("3.4.2.0")]
[assembly: AssemblyFileVersion("3.4.2.0")]
14 changes: 10 additions & 4 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.1.0" Language="en-US" Publisher="Mahdi Hosseini" />
<Identity Id="16adb6c8-d74c-451c-9c7e-a93ef604d0b9" Version="3.4.2.0" 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,9 +14,15 @@ 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, 18.0)">
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[15.0, 18.0)">
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[15.0, 18.0)">
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>

<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
Expand Down
2 changes: 1 addition & 1 deletion extension/visual studio/WpfApp/ProjectTemplate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.4.1"/>
<PackageReference Include="HandyControls" Version="3.4.2"/>
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.4.1"/>
<PackageReference Include="HandyControls" Version="3.4.2"/>
<PackageReference Include="Prism.DryIoc" Version="8.1.97" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.4.1" />
<PackageReference Include="HandyControls" Version="3.4.2" />
<PackageReference Include="Stylet" Version="1.3.6" />
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion extension/visual studio/WpfCoreApp/ProjectTemplate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.4.1" />
<PackageReference Include="HandyControls" Version="3.4.2" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.4.1" />
<PackageReference Include="HandyControls" Version="3.4.2" />
<PackageReference Include="Prism.DryIoc" Version="8.1.97" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.4.1" />
<PackageReference Include="HandyControls" Version="3.4.2" />
<PackageReference Include="Stylet" Version="1.3.6" />
</ItemGroup>
</Project>

0 comments on commit 65894a5

Please sign in to comment.