Skip to content

Commit 57823b1

Browse files
committed
Bump OC to 3.0.0-preview-19005
1 parent 4a41058 commit 57823b1

4 files changed

Lines changed: 26 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
dotnet-version: 10.0.*
2121
- name: Install Dependencies
22-
run: dotnet restore
22+
run: dotnet restore --configfile ./NuGet.config
2323
- name: Build
2424
run: dotnet build --configuration Release --no-restore
2525
- name: Test

Directory.Build.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
5-
<Nullable>disable</Nullable>
65
<IsPackable>false</IsPackable>
76
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
87
</PropertyGroup>

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageVersion Include="Microsoft.CodeAnalysis" Version="5.3.0" />
1111
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="5.3.0" />
1212
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
13-
<PackageVersion Include="OrchardCore.DisplayManagement.Liquid" Version="2.2.1" />
13+
<PackageVersion Include="OrchardCore.DisplayManagement.Liquid" Version="3.0.0-preview-19005" />
1414
<PackageVersion Include="xunit" Version="2.9.3" />
1515
<PackageVersion Include="xunit.analyzers" Version="1.27.0" />
1616
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />

NuGet.config

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,26 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
<packageSources>
4-
<!-- Ignore global configuration -->
5-
<clear />
6-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7-
</packageSources>
3+
<packageSources>
4+
<clear />
5+
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
6+
<add key="Cloudsmith" value="https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json" />
7+
</packageSources>
8+
9+
<packageSourceMapping>
10+
<packageSource key="Cloudsmith">
11+
<package pattern="OrchardCore" />
12+
<package pattern="OrchardCore.*" />
13+
<package pattern="TheAdmin" />
14+
<package pattern="TheAgencyTheme" />
15+
<package pattern="TheBlogTheme" />
16+
<package pattern="TheComingSoonTheme" />
17+
<package pattern="TheTheme" />
18+
<package pattern="SafeMode" />
19+
</packageSource>
20+
<packageSource key="NuGet">
21+
<package pattern="*" />
22+
<package pattern="OrchardCoreContrib.*" />
23+
<package pattern="OrchardCore.Translations.*" />
24+
</packageSource>
25+
</packageSourceMapping>
826
</configuration>

0 commit comments

Comments
 (0)