Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tags to project templates #1382

Merged
merged 4 commits into from
May 23, 2023
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
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ indent_style = space
indent_size = 2

# XML config files
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vstemplate,vsct}]
indent_size = 2

# HTML / CSS files
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
<EnableLocationBrowseButton>true</EnableLocationBrowseButton>
<CreateInPlace>true</CreateInPlace>
<Icon>__TemplateIcon.ico</Icon>
<LanguageTag>csharp</LanguageTag>
<PlatformTag>Bonsai</PlatformTag>
<ProjectTypeTag>library</ProjectTypeTag>
</TemplateData>
<TemplateContent>
<Project TargetFileName="ProjectTemplate.csproj" File="ProjectTemplate.csproj" ReplaceParameters="true">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Bonsai.Core" Version="2.7.0" />
<PackageReference Include="Bonsai.Core" Version="2.8.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</WizardExtension>
<WizardData>
<packages repository="extension" repositoryId="BonsaiTemplatesVsix.ac37e8b9-5d6c-407c-b2ca-2e550a8ab918">
<package id="Bonsai.Core" version="2.7.0" />
<package id="Bonsai.Core" version="2.8.0" />
</packages>
</WizardData>
</VSTemplate>
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</WizardExtension>
<WizardData>
<packages repository="extension" repositoryId="BonsaiTemplatesVsix.ac37e8b9-5d6c-407c-b2ca-2e550a8ab918">
<package id="Bonsai.Core" version="2.7.0" />
<package id="Bonsai.Core" version="2.8.0" />
</packages>
</WizardData>
</VSTemplate>
81 changes: 41 additions & 40 deletions Bonsai.Templates/Bonsai.Templates/eula.rtf

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<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="BonsaiTemplatesVsix.ac37e8b9-5d6c-407c-b2ca-2e550a8ab918" Version="2.7.0" Language="en-US" Publisher="Gonçalo Lopes" />
<Identity Id="BonsaiTemplatesVsix.ac37e8b9-5d6c-407c-b2ca-2e550a8ab918" Version="2.8.0" Language="en-US" Publisher="Gonçalo Lopes" />
<DisplayName>Bonsai Templates</DisplayName>
<Description xml:space="preserve">A collection of project and item templates for extending the Bonsai programming language.</Description>
<MoreInfo>http://bonsai-rx.org</MoreInfo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</WizardExtension>
<WizardData>
<packages repository="extension" repositoryId="BonsaiTemplatesVsix.ac37e8b9-5d6c-407c-b2ca-2e550a8ab918">
<package id="Bonsai.Core" version="2.7.0" />
<package id="Bonsai.Core" version="2.8.0" />
</packages>
</WizardData>
</VSTemplate>
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
</WizardExtension>
<WizardData>
<packages repository="extension" repositoryId="BonsaiTemplatesVsix.ac37e8b9-5d6c-407c-b2ca-2e550a8ab918">
<package id="Bonsai.Core" version="2.7.0" />
<package id="Bonsai.Design" version="2.7.0" />
<package id="Bonsai.Core" version="2.8.0" />
<package id="Bonsai.Design" version="2.8.0" />
</packages>
</WizardData>
</VSTemplate>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<WorkflowBuilder Version="2.7.0"
<WorkflowBuilder Version="2.8.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://bonsai-rx.org/2018/workflow">
<Workflow>
Expand Down