Skip to content

Commit

Permalink
Merge branch 'Shazwazza/master' into dnn
Browse files Browse the repository at this point in the history
# Conflicts:
#	appveyor.yml
  • Loading branch information
bdukes committed Aug 11, 2021
2 parents 133fe7c + 21f1509 commit 8123ec7
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion appveyor.build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.9.8.{build}
version: 1.9.10.{build}
skip_tags: true
image: Visual Studio 2019
build_script:
Expand Down
10 changes: 7 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
version: 1.9.10.{build}
skip_non_tags: true
image: Visual Studio 2019
pull_requests:
do_not_increment_build_number: true
branches:
only:
- dnn
image: Visual Studio 2017
nuget:
project_feed: true
disable_publish_on_pr: true
version: 1.9.2.{build}

environment:
ProductVersion: 1.9.2
ProductVersion: 1.9.10

before_build:
- ps: Update-AppveyorBuild -Version "$env:ProductVersion.$env:APPVEYOR_BUILD_NUMBER-$env:APPVEYOR_JOB_ID"
Expand All @@ -19,3 +20,6 @@ build_script:
- ps: .\Build-Release.ps1 $env:BuildVersion ''
after_build:
- ps: Push-AppveyorArtifact build\Releases\v$env:BuildVersion\Dnn.ClientDependency.$env:BuildVersion.nupkg
artifacts:
- path: build\Release\*.nupkg
name: Nuget Package
2 changes: 1 addition & 1 deletion src/ClientDependency.Core/CssHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using System.Web;
using ClientDependency.Core.CompositeFiles;
using ClientDependency.Core.Config;

Expand Down
2 changes: 1 addition & 1 deletion src/ClientDependency.Web.Test/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Composite files are used for both types of projects.
** IMPORTANT: If you're web.config setting: compilation debug="true" is set to 'true', then composite files will NOT be enabled no matter what
-->
<clientDependency htmlCompatibility="html5" version="44789" fileDependencyExtensions=".js,.css" loggerType="ClientDependency.Web.Test.TestLogger, ClientDependency.Web.Test">
<clientDependency htmlCompatibility="html5" version="849465" fileDependencyExtensions=".js,.css" loggerType="ClientDependency.Web.Test.TestLogger, ClientDependency.Web.Test">
<!--The enableCompositeFiles="true" is optional and by default is set to true.-->
<!--
This section is used for Web Forms only.
Expand Down
4 changes: 2 additions & 2 deletions src/ClientDependency.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{C5D95718-11A7-4F12-A41A-10229A87F428}"
ProjectSection(SolutionItems) = preProject
appveyor.build.yml = appveyor.build.yml
appveyor.yml = appveyor.yml
..\appveyor.build.yml = ..\appveyor.build.yml
..\appveyor.yml = ..\appveyor.yml
..\Build-Release.ps1 = ..\Build-Release.ps1
..\build\ClientDependency-Coffee.nuspec = ..\build\ClientDependency-Coffee.nuspec
..\build\ClientDependency-Less.nuspec = ..\build\ClientDependency-Less.nuspec
Expand Down
10 changes: 5 additions & 5 deletions src/SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
using System.Security;

[assembly: AssemblyCompany("Shannon Deminick")]
[assembly: AssemblyCopyright("Copyright © Shannon Deminick 2020")]
[assembly: AssemblyCopyright("Copyright © Shannon Deminick 2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyCulture("")]


[assembly: AssemblyVersion("1.9.9")]
[assembly: AssemblyFileVersion("1.9.9")]
[assembly: AssemblyInformationalVersion("1.9.9")]
[assembly: AssemblyVersion("1.9.10")]
[assembly: AssemblyFileVersion("1.9.10")]
[assembly: AssemblyInformationalVersion("1.9.10")]

0 comments on commit 8123ec7

Please sign in to comment.