Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
ef35980
Set target framework as .net9
warrenbuckley Aug 1, 2025
d9dca40
Macros are no more...
warrenbuckley Aug 4, 2025
82a3d60
Updated versions
warrenbuckley Aug 4, 2025
ef6a5a0
Switch to IPackageManifestReader
warrenbuckley Aug 4, 2025
780b2d8
Merge branch 'main' into v16/dev
warrenbuckley Aug 24, 2025
12eea28
Remove the older Umbraco site
warrenbuckley Aug 24, 2025
14130b6
Add in uSync and project reference
warrenbuckley Aug 24, 2025
053271c
Export uSync bits and flesh out a partial
warrenbuckley Aug 24, 2025
6e7f1c5
Fix up build and replace obsoleted code with new equivelant
warrenbuckley Aug 24, 2025
a9717e7
Merge pull request #76 from umbraco-community/v16/fix-build-errors
warrenbuckley Aug 24, 2025
37aad5b
Merge branch 'v16/dev' into v16/updated-testsite
warrenbuckley Aug 24, 2025
98519e6
Adds some test uSync dictionary/translation items
warrenbuckley Aug 24, 2025
922bb8b
Update GitHub Actions YML to newer versions that are not deprecated
warrenbuckley Aug 24, 2025
1de37ee
Add in our-if example
warrenbuckley Aug 25, 2025
719ee53
Add in BeginUmbracoForm SurfaceController example
warrenbuckley Aug 25, 2025
09df037
Adds our-lang-swticher example
warrenbuckley Aug 26, 2025
68b9c70
Adds our-version
warrenbuckley Aug 26, 2025
50f1f03
Add in our-self-host example
warrenbuckley Aug 26, 2025
5b61f86
Adds ModelsBuilder & our-fallback example
warrenbuckley Aug 26, 2025
83a4a7f
Adds in user-include and user-exclude example
warrenbuckley Aug 26, 2025
cf3acd3
Add in our-edit-link
warrenbuckley Aug 28, 2025
b324d74
Add in our-svg
warrenbuckley Aug 28, 2025
2a21966
Adds new property to node for an SVG media item picker
warrenbuckley Aug 28, 2025
ab091e7
Update all the nuget packages
warrenbuckley Sep 7, 2025
09a5870
Gitversion 6.0 breaking change in YML tag renamed to label
warrenbuckley Sep 7, 2025
cf394f2
Updated uSync file to match updated version installed
warrenbuckley Sep 7, 2025
f0839be
Test Nuget references updated and NUnit reference updated to use Clas…
warrenbuckley Sep 7, 2025
15c0e9e
Updated Modelsbuilder setting to not use Version number
warrenbuckley Sep 7, 2025
cd6868b
Adds in our-cache example
warrenbuckley Sep 7, 2025
5f14888
Update github actions for gitversion
warrenbuckley Sep 7, 2025
d3181c6
Adds in our-link examples
warrenbuckley Sep 8, 2025
aebd7db
Adds test nodes for our-active-class
warrenbuckley Sep 8, 2025
c1bed74
our-member-include/exclude sample
warrenbuckley Oct 12, 2025
d7fcd16
Updated GH checkout for GH Actions
warrenbuckley Oct 12, 2025
38cda5f
Adds in our-img example
warrenbuckley Oct 13, 2025
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
14 changes: 6 additions & 8 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,13 @@ jobs:
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '5.0.x'

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: |
5.0.x
6.0.x
9.0.x

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
28 changes: 13 additions & 15 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,32 @@ jobs:

steps:
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0.9.7
uses: gittools/actions/gitversion/setup@v4.1.0
with:
versionSpec: '5.x'
versionSpec: '6.x'

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'

- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
dotnet-version: |
5.0.x
6.0.x
9.0.x

- name: Restore dependencies
run: dotnet restore
working-directory: Our.Umbraco.TagHelpers

- name: Determine Version with GitVersion (MSBuild in Proj will do this)
id: gitversion
uses: gittools/actions/gitversion/execute@v0.9.7
uses: gittools/actions/gitversion/execute@v4.1.0
with:
useConfigFile: true
configFilePath: ./GitVersion.yml
configFilePath: GitVersion.yml
updateAssemblyInfo: true

- name: Display GitVersion outputs - Help for debugging for now
run: |
Expand Down Expand Up @@ -90,7 +88,7 @@ jobs:
working-directory: Our.Umbraco.TagHelpers

- name: Upload nuget file as build artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Nuget Build Output
path: ./build.out/
Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/release-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,14 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'

- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
dotnet-version: |
5.0.x
6.0.x
9.0.x

- name: Restore dependencies
run: dotnet restore
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -385,4 +385,6 @@ FodyWeavers.xsd

# JetBrains Rider
.idea/
*.sln.iml
*.sln.iml
.DS_Store
Our.Umbraco.TagHelpers.TestSite/wwwroot/assets
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mode: ContinuousDeployment
branches:
main:
mode: ContinuousDeployment
tag: ''
label: ''
pull-request:
mode: ContinuousDeployment
ignore:
Expand Down
19 changes: 0 additions & 19 deletions Our.Umbraco.TagHelpers.ExampleSite/Program.cs

This file was deleted.

65 changes: 0 additions & 65 deletions Our.Umbraco.TagHelpers.ExampleSite/Startup.cs

This file was deleted.

This file was deleted.

Loading
Loading