Skip to content

Commit

Permalink
Orchard Core 1.2.2 (#27)
Browse files Browse the repository at this point in the history
* Orchard Core 1.2.2

* correct version
  • Loading branch information
deanmarcussen authored Feb 2, 2022
1 parent 63c7c30 commit dd541dd
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 18 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
18 changes: 9 additions & 9 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project>

<ItemGroup>
<PackageReference Update="OrchardCore.Application.Cms.Targets" Version="1.1.0" />
<PackageReference Update="OrchardCore.ContentManagement" Version="1.1.0" />
<PackageReference Update="OrchardCore.ContentTypes.Abstractions" Version="1.1.0" />
<PackageReference Update="OrchardCore.DisplayManagement" Version="1.1.0" />
<PackageReference Update="OrchardCore.Logging.NLog" Version="1.1.0" />
<PackageReference Update="OrchardCore.Module.Targets" Version="1.1.0" />
<PackageReference Update="OrchardCore.Navigation.Core" Version="1.1.0" />
<PackageReference Update="OrchardCore.ResourceManagement" Version="1.1.0" />
<PackageReference Update="OrchardCore.Application.Cms.Targets" Version="1.2.2" />
<PackageReference Update="OrchardCore.ContentManagement" Version="1.2.2" />
<PackageReference Update="OrchardCore.ContentTypes.Abstractions" Version="1.2.2" />
<PackageReference Update="OrchardCore.DisplayManagement" Version="1.2.2" />
<PackageReference Update="OrchardCore.Logging.NLog" Version="1.2.2" />
<PackageReference Update="OrchardCore.Module.Targets" Version="1.2.2" />
<PackageReference Update="OrchardCore.Navigation.Core" Version="1.2.2" />
<PackageReference Update="OrchardCore.ResourceManagement" Version="1.2.2" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TieredCompilation>true</TieredCompilation>
<TargetFramework>net6.0</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<PreserveCompilationReferences>true</PreserveCompilationReferences>
<RazorRuntimeCompilation>false</RazorRuntimeCompilation>
</PropertyGroup>

<ItemGroup>
<Content Remove="Views\QueryGoogleMaps.cshtml" />
</ItemGroup>

<ItemGroup>
<Folder Include="wwwroot\" />
<Folder Include="Localization\" />
Expand Down
2 changes: 1 addition & 1 deletion src/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Name = "Google Maps",
Author = "ThisNetWorks",
Website = "https://github.com/ThisNetWorks/ThisNetWorks.OrchardCore.GoogleMaps",
Version = "1.1.0",
Version = "1.2.0",
Description = "Google Maps Module",
Dependencies = new[] { "OrchardCore.Contents" },
Category = "Content Management"
Expand Down
2 changes: 1 addition & 1 deletion src/ThisNetWorks.OrchardCore.GoogleMaps.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
</PropertyGroup>

Expand Down

0 comments on commit dd541dd

Please sign in to comment.