Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Archive/cloudscribeTemplate_10.0_net100_bs5_vs2022.vsix
Binary file not shown.
21 changes: 19 additions & 2 deletions cloudscribeTemplate/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,37 @@
<Description xml:space="preserve">A Visual Studio extension that makes it easy to start new web application projects using cloudscribe libraries</Description>
<MoreInfo>https://www.cloudscribe.com/docs/introduction</MoreInfo>
<License>License.txt</License>
<ReleaseNotes>VS2022 extension - .NET 10.0 and BS5</ReleaseNotes>
<ReleaseNotes>VS2022/VS2025 extension - .NET 10.0 and BS5</ReleaseNotes>
<Icon>Properties\project-icon.png</Icon>
<Tags>asp.net core cloudscribe</Tags>
</Metadata>
<Installation>


<!-- VS 2019 (x86) -->
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[16.0,17.0)">
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>

<!-- VS 2022 (amd64) -->
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0,18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>

<!-- VS 2025 (amd64) -->
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[18.0,19.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>

<!-- VS 2025 Professional (amd64) -->
<InstallationTarget Id="Microsoft.VisualStudio.Professional" Version="[18.0,19.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>

<!-- VS 2025 Enterprise (amd64) -->
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[18.0,19.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>

</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
Expand Down