Skip to content

Commit 8ed5b46

Browse files
authored
Merge pull request #103 from DNNCommunity/release/1.1.0
Released v1.1.0
2 parents 3d5d3a1 + fee4bac commit 8ed5b46

File tree

133 files changed

+1236
-8846
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+1236
-8846
lines changed

.github/badges/UnitTests/badge_branchcoverage.svg

+2-2
Loading

.github/badges/UnitTests/badge_linecoverage.svg

+2-2
Loading

.github/workflows/Build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ name: Build
1919
on:
2020
push:
2121
branches:
22-
- main
2322
- master
2423
- develop
25-
- development
2624
- 'release/*'
2725

2826
jobs:
29-
windows-latest:
30-
name: Build
31-
runs-on: windows-latest
27+
ubuntu-latest:
28+
name: ubuntu-latest
29+
runs-on: ubuntu-latest
3230
steps:
33-
- uses: actions/checkout@v1
31+
- uses: actions/checkout@v2
32+
with:
33+
fetch-depth: 0
3434
- name: Cache .nuke/temp, ~/.nuget/packages
3535
uses: actions/cache@v2
3636
with:
@@ -41,4 +41,4 @@ jobs:
4141
- name: Run './build.cmd DeployGeneratedFiles'
4242
run: ./build.cmd DeployGeneratedFiles
4343
env:
44-
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
44+
GitHubToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/PR_Validation.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ on:
2626
- 'release/*'
2727

2828
jobs:
29-
windows-latest:
30-
name: PR Validation
31-
runs-on: windows-latest
29+
ubuntu-latest:
30+
name: ubuntu-latest
31+
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v1
33+
- uses: actions/checkout@v2
34+
with:
35+
fetch-depth: 0
3436
- name: Cache .nuke/temp, ~/.nuget/packages
3537
uses: actions/cache@v2
3638
with:
@@ -41,4 +43,4 @@ jobs:
4143
- name: Run './build.cmd Package'
4244
run: ./build.cmd Package
4345
env:
44-
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
46+
GitHubToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/Release.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ on:
2424
- 'release/*'
2525

2626
jobs:
27-
windows-latest:
28-
name: Release
29-
runs-on: windows-latest
27+
ubuntu-latest:
28+
name: ubuntu-latest
29+
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v1
31+
- uses: actions/checkout@v2
32+
with:
33+
fetch-depth: 0
3234
- name: Cache .nuke/temp, ~/.nuget/packages
3335
uses: actions/cache@v2
3436
with:
@@ -39,4 +41,4 @@ jobs:
3941
- name: Run './build.cmd Release'
4042
run: ./build.cmd Release
4143
env:
42-
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
44+
GitHubToken: ${{ secrets.GITHUB_TOKEN }}

.nuke/build.schema.json

+1-14
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"AppVeyor",
3434
"AzurePipelines",
3535
"Bamboo",
36+
"Bitbucket",
3637
"Bitrise",
3738
"GitHubActions",
3839
"GitLab",
@@ -77,19 +78,14 @@
7778
"enum": [
7879
"BuildFrontEnd",
7980
"Clean",
80-
"CleanDocsFolder",
8181
"Compile",
82-
"ComponentsDocs",
8382
"Deploy",
8483
"DeployBinaries",
8584
"DeployFrontEnd",
8685
"DeployGeneratedFiles",
87-
"DocFx",
88-
"Docs",
8986
"GenerateAppConfig",
9087
"GenerateReleaseNotes",
9188
"InstallNpmPackages",
92-
"IntegrationTests",
9389
"LogInfo",
9490
"Package",
9591
"Release",
@@ -102,8 +98,6 @@
10298
"Swagger",
10399
"TagRelease",
104100
"Test",
105-
"TestsDocs",
106-
"TsDoc",
107101
"UnitTests",
108102
"UpdateTokens",
109103
"Watch"
@@ -122,19 +116,14 @@
122116
"enum": [
123117
"BuildFrontEnd",
124118
"Clean",
125-
"CleanDocsFolder",
126119
"Compile",
127-
"ComponentsDocs",
128120
"Deploy",
129121
"DeployBinaries",
130122
"DeployFrontEnd",
131123
"DeployGeneratedFiles",
132-
"DocFx",
133-
"Docs",
134124
"GenerateAppConfig",
135125
"GenerateReleaseNotes",
136126
"InstallNpmPackages",
137-
"IntegrationTests",
138127
"LogInfo",
139128
"Package",
140129
"Release",
@@ -147,8 +136,6 @@
147136
"Swagger",
148137
"TagRelease",
149138
"Test",
150-
"TestsDocs",
151-
"TsDoc",
152139
"UnitTests",
153140
"UpdateTokens",
154141
"Watch"

App.config

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
<configSections>
4-
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
5-
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
6-
</configSections>
73
<entityFramework>
84
<providers>
95
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />

Controllers/ItemController.cs

-114
This file was deleted.

Data/Entities/BaseEntity.cs

-28
This file was deleted.

Data/Entities/IEntity.cs

-38
This file was deleted.

0 commit comments

Comments
 (0)