Skip to content

Commit 8a81943

Browse files
committed
Releasing beta2
2 parents ec4f306 + 2c5d923 commit 8a81943

File tree

2,584 files changed

+293208
-140892
lines changed

Some content is hidden

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

2,584 files changed

+293208
-140892
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dotnet_style_qualification_for_event = false : suggestion
3434

3535
# Use language keywords instead of framework type names for type references
3636
dotnet_style_predefined_type_for_locals_parameters_members = true : suggestion
37-
dotnet_style_predefined_type_for_member_access = true : suggestion
37+
dotnet_style_predefined_type_for_member_access = false : suggestion
3838

3939
# Suggest more modern language features when available
4040
csharp_style_pattern_matching_over_is_with_cast_check = true : none

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@ nuget.exe
184184
!lib/*/*.*
185185

186186
#exclude node modules
187-
node_modules/*
187+
node_modules/
188188

189-
wwwroot
189+
wwwroot
190+
!src/OrchardCore.Modules/**/wwwroot
191+
!src/OrchardCore.Themes/**/wwwroot
192+
.template.config/

.travis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
- docker
55
dist: trusty
66
mono: none
7-
dotnet: 2.0.0
7+
# dotnet: 2.1.300
88
env:
99
global:
1010
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
@@ -14,14 +14,16 @@ os:
1414
- osx
1515
osx_image: xcode8.3
1616
script:
17-
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
18-
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
17+
- curl https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version 2.1.301
18+
- if test "$TRAVIS_OS_NAME" == "linux"; then export PATH="/home/travis/.dotnet":"$PATH"; fi
19+
- if test "$TRAVIS_OS_NAME" == "osx"; then export PATH="/Users/travis/.dotnet":"$PATH"; fi
20+
- dotnet --info
1921
- dotnet build -c Release
2022
- if [[ "$TRAVIS_BRANCH" == "master" ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then
2123
cd $TRAVIS_BUILD_DIR/src/OrchardCore.Cms.Web;
2224
dotnet publish -c Release -o $TRAVIS_BUILD_DIR/.build/release;
2325
cd $TRAVIS_BUILD_DIR;
24-
docker build -t orchardproject/orchardcore-cms-linux:latest -t orchardproject/orchardcore-cms-linux:1.0.0-beta1 .;
26+
docker build -t orchardproject/orchardcore-cms-linux:latest -t orchardproject/orchardcore-cms-linux:1.0.0-beta2 .;
2527
docker login -u="$DOCKER_USER" -p="$DOCKER_PASS";
2628
docker push orchardproject/orchardcore-cms-linux;
2729
fi;

.vscode/launch.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "Web App: Dotnet Build Debug",
9-
"program": "${workspaceRoot}/src/OrchardCore.Cms.Web/bin/Debug/netcoreapp2.0/OrchardCore.Cms.Web.dll",
9+
"program": "${workspaceRoot}/src/OrchardCore.Cms.Web/bin/Debug/netcoreapp2.1/OrchardCore.Cms.Web.dll",
1010
"args": [],
1111
"cwd": "${workspaceRoot}/src/OrchardCore.Cms.Web",
1212
"env": {
@@ -20,7 +20,7 @@
2020
"request": "launch",
2121
"internalConsoleOptions": "openOnSessionStart",
2222
"preLaunchTask": "Web App: Dotnet Build Debug",
23-
"program": "${workspaceRoot}/src/OrchardCore.Cms.Web/bin/Debug/netcoreapp2.0/OrchardCore.Cms.Web.dll",
23+
"program": "${workspaceRoot}/src/OrchardCore.Cms.Web/bin/Debug/netcoreapp2.1/OrchardCore.Cms.Web.dll",
2424
"args": [],
2525
"cwd": "${workspaceRoot}/src/OrchardCore.Cms.Web",
2626
"env": {
@@ -47,7 +47,7 @@
4747
"type": "coreclr",
4848
"request": "launch",
4949
"preLaunchTask": "Web App: Dotnet Build Release/admin",
50-
"program": "${workspaceRoot}/src/OrchardCore.Cms.Web/bin/Release/netcoreapp2.0/OrchardCore.Cms.Web.dll",
50+
"program": "${workspaceRoot}/src/OrchardCore.Cms.Web/bin/Release/netcoreapp2.1/OrchardCore.Cms.Web.dll",
5151
"args": [],
5252
"cwd": "${workspaceRoot}/src/OrchardCore.Cms.Web",
5353
"stopAtEntry": false,

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
// Place your settings in this file to overwrite default and user settings.
22
{
3+
"omnisharp.projectLoadTimeout": 600
34
}

Contributors.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ their names indented and be marked with a '-'
1818
* Lombiq (@LombiqTechnologies)
1919
- Benedek Farkas
2020
- Zoltán Lehóczky (@Piedone)
21+
22+
* Antoine Griffard (@agriffard)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Docker file is intended for the CI
22
# A prerequisite is a published application in the .build/release
33

4-
FROM microsoft/dotnet:2.0-runtime
4+
FROM microsoft/dotnet:2.1-aspnetcore-runtime
55

66
EXPOSE 80
77
ENV ASPNETCORE_URLS http://+:80

LICENSE

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
BSD 3-Clause License
2+
https://opensource.org/licenses/BSD-3-Clause
3+
14
Copyright (c) .NET Foundation. All rights reserved.
2-
BSD 3-Clause License - https://opensource.org/licenses/BSD-3-Clause
35

46
Redistribution and use in source and binary forms, with or without
57
modification, are permitted provided that the following conditions are met:
@@ -25,4 +27,3 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2527
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2628
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2729
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28-

NuGet.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<packageSources>
44
<clear />
55
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
6-
<!-- This feed is used for customized packages which are not published on Nuget.org, and other upstream feeds -->
76
<add key="OrchardCore" value="https://www.myget.org/F/orchardcore-dev/api/v3/index.json" />
87
</packageSources>
98
<disabledPackageSources />

0 commit comments

Comments
 (0)