-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from DNNCommunity/develop
Merged develop into main for release
- Loading branch information
Showing
86 changed files
with
895 additions
and
671 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# ------------------------------------------------------------------------------ | ||
# <auto-generated> | ||
# | ||
# This code was generated. | ||
# | ||
# - To turn off auto-generation set: | ||
# | ||
# [GitHubActions (AutoGenerate = false)] | ||
# | ||
# - To trigger manual generation invoke: | ||
# | ||
# nuke --generate-configuration GitHubActions_continous --host GitHubActions | ||
# | ||
# </auto-generated> | ||
# ------------------------------------------------------------------------------ | ||
|
||
name: continous | ||
|
||
on: [push] | ||
|
||
jobs: | ||
ubuntu-latest: | ||
name: ubuntu-latest | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Cache .nuke/temp, ~/.nuget/packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
.nuke/temp | ||
~/.nuget/packages | ||
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }} | ||
- name: Run './build.cmd Package' | ||
run: ./build.cmd Package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Build Schema", | ||
"$ref": "#/definitions/build", | ||
"definitions": { | ||
"build": { | ||
"type": "object", | ||
"properties": { | ||
"Configuration": { | ||
"type": "string", | ||
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)", | ||
"enum": [ | ||
"Debug", | ||
"Release" | ||
] | ||
}, | ||
"Continue": { | ||
"type": "boolean", | ||
"description": "Indicates to continue a previously failed build attempt" | ||
}, | ||
"Help": { | ||
"type": "boolean", | ||
"description": "Shows the help text for this build assembly" | ||
}, | ||
"Host": { | ||
"type": "string", | ||
"description": "Host for execution. Default is 'automatic'", | ||
"enum": [ | ||
"AppVeyor", | ||
"AzurePipelines", | ||
"Bamboo", | ||
"Bitbucket", | ||
"Bitrise", | ||
"GitHubActions", | ||
"GitLab", | ||
"Jenkins", | ||
"Rider", | ||
"SpaceAutomation", | ||
"TeamCity", | ||
"Terminal", | ||
"TravisCI", | ||
"VisualStudio", | ||
"VSCode" | ||
] | ||
}, | ||
"NoLogo": { | ||
"type": "boolean", | ||
"description": "Disables displaying the NUKE logo" | ||
}, | ||
"Partition": { | ||
"type": "string", | ||
"description": "Partition to use on CI" | ||
}, | ||
"Plan": { | ||
"type": "boolean", | ||
"description": "Shows the execution plan (HTML)" | ||
}, | ||
"Profile": { | ||
"type": "array", | ||
"description": "Defines the profiles to load", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"Root": { | ||
"type": "string", | ||
"description": "Root directory during build execution" | ||
}, | ||
"Skip": { | ||
"type": "array", | ||
"description": "List of targets to be skipped. Empty list skips all dependencies", | ||
"items": { | ||
"type": "string", | ||
"enum": [ | ||
"Clean", | ||
"Compile", | ||
"Deploy", | ||
"Package", | ||
"Restore", | ||
"SetManifestVersions" | ||
] | ||
} | ||
}, | ||
"Solution": { | ||
"type": "string", | ||
"description": "Path to a solution file that is automatically loaded" | ||
}, | ||
"Target": { | ||
"type": "array", | ||
"description": "List of targets to be invoked. Default is '{default_target}'", | ||
"items": { | ||
"type": "string", | ||
"enum": [ | ||
"Clean", | ||
"Compile", | ||
"Deploy", | ||
"Package", | ||
"Restore", | ||
"SetManifestVersions" | ||
] | ||
} | ||
}, | ||
"Verbosity": { | ||
"type": "string", | ||
"description": "Logging verbosity during build execution. Default is 'Normal'", | ||
"enum": [ | ||
"Minimal", | ||
"Normal", | ||
"Quiet", | ||
"Verbose" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"$schema": "./build.schema.json", | ||
"Solution": "Dnn.Modules.Vendors.sln" | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RuleSet Name="Rules for Dnn.Modules.Vendors" Description="Code analysis rules for Dnn.Modules.Vendors.csproj." ToolsVersion="17.0"> | ||
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed"> | ||
<Rule Id="CA1001" Action="Warning" /> | ||
<Rule Id="CA1009" Action="Warning" /> | ||
<Rule Id="CA1016" Action="Warning" /> | ||
<Rule Id="CA1033" Action="Warning" /> | ||
<Rule Id="CA1049" Action="Warning" /> | ||
<Rule Id="CA1060" Action="Warning" /> | ||
<Rule Id="CA1061" Action="Warning" /> | ||
<Rule Id="CA1063" Action="Warning" /> | ||
<Rule Id="CA1065" Action="Warning" /> | ||
<Rule Id="CA1301" Action="Warning" /> | ||
<Rule Id="CA1400" Action="Warning" /> | ||
<Rule Id="CA1401" Action="Warning" /> | ||
<Rule Id="CA1403" Action="Warning" /> | ||
<Rule Id="CA1404" Action="Warning" /> | ||
<Rule Id="CA1405" Action="Warning" /> | ||
<Rule Id="CA1410" Action="Warning" /> | ||
<Rule Id="CA1415" Action="Warning" /> | ||
<Rule Id="CA1821" Action="Warning" /> | ||
<Rule Id="CA1900" Action="Warning" /> | ||
<Rule Id="CA1901" Action="Warning" /> | ||
<Rule Id="CA2002" Action="Warning" /> | ||
<Rule Id="CA2100" Action="Warning" /> | ||
<Rule Id="CA2101" Action="Warning" /> | ||
<Rule Id="CA2108" Action="Warning" /> | ||
<Rule Id="CA2111" Action="Warning" /> | ||
<Rule Id="CA2112" Action="Warning" /> | ||
<Rule Id="CA2114" Action="Warning" /> | ||
<Rule Id="CA2116" Action="Warning" /> | ||
<Rule Id="CA2117" Action="Warning" /> | ||
<Rule Id="CA2122" Action="Warning" /> | ||
<Rule Id="CA2123" Action="Warning" /> | ||
<Rule Id="CA2124" Action="Warning" /> | ||
<Rule Id="CA2126" Action="Warning" /> | ||
<Rule Id="CA2131" Action="Warning" /> | ||
<Rule Id="CA2132" Action="Warning" /> | ||
<Rule Id="CA2133" Action="Warning" /> | ||
<Rule Id="CA2134" Action="Warning" /> | ||
<Rule Id="CA2137" Action="Warning" /> | ||
<Rule Id="CA2138" Action="Warning" /> | ||
<Rule Id="CA2140" Action="Warning" /> | ||
<Rule Id="CA2141" Action="Warning" /> | ||
<Rule Id="CA2146" Action="Warning" /> | ||
<Rule Id="CA2147" Action="Warning" /> | ||
<Rule Id="CA2149" Action="Warning" /> | ||
<Rule Id="CA2200" Action="Warning" /> | ||
<Rule Id="CA2202" Action="Warning" /> | ||
<Rule Id="CA2207" Action="Warning" /> | ||
<Rule Id="CA2212" Action="Warning" /> | ||
<Rule Id="CA2213" Action="Warning" /> | ||
<Rule Id="CA2214" Action="Warning" /> | ||
<Rule Id="CA2216" Action="Warning" /> | ||
<Rule Id="CA2220" Action="Warning" /> | ||
<Rule Id="CA2229" Action="Warning" /> | ||
<Rule Id="CA2231" Action="Warning" /> | ||
<Rule Id="CA2232" Action="Warning" /> | ||
<Rule Id="CA2235" Action="Warning" /> | ||
<Rule Id="CA2236" Action="Warning" /> | ||
<Rule Id="CA2237" Action="Warning" /> | ||
<Rule Id="CA2238" Action="Warning" /> | ||
<Rule Id="CA2240" Action="Warning" /> | ||
<Rule Id="CA2241" Action="Warning" /> | ||
<Rule Id="CA2242" Action="Warning" /> | ||
</Rules> | ||
</RuleSet> |
Oops, something went wrong.