Skip to content

Commit

Permalink
Add Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisPulman committed Dec 14, 2023
1 parent f26f27d commit 4ad58dc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/BuildDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
with:
setAllVars: true
- run: echo 'SemVer2=${{ steps.nbgv.outputs.SemVer2 }}'

- name: 'Setup Java JDK 11'
uses: actions/[email protected]
with:
distribution: 'microsoft'
java-version: '11'

- name: 'Install DotNet workloads'
shell: bash
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/BuildOnly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: 'Setup Java JDK 11'
uses: actions/[email protected]
with:
distribution: 'microsoft'
java-version: '11'

- name: 'Install DotNet workloads'
shell: bash
Expand Down
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<ReactiveUIVersion>19.5.1</ReactiveUIVersion>
<CrissCrossCoreTargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</CrissCrossCoreTargetFrameworks>
<CrissCrossWinTargetFrameworks>net462;net472;net48;net6.0-windows10.0.17763.0;net7.0-windows10.0.17763.0;net8.0-windows10.0.17763.0</CrissCrossWinTargetFrameworks>
<CrissCrossWebviewTargetFrameworks>net462;net472;net48;net6.0-windows;net7.0-windows;net8.0-windows</CrissCrossWebviewTargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
Expand Down
2 changes: 1 addition & 1 deletion Version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.0.3",
"version": "1.0.4",
"publicReleaseRefSpec": [
"^refs/heads/master$",
"^refs/heads/main$"
Expand Down
2 changes: 1 addition & 1 deletion src/CrissCross.WPF.WebView2/CrissCross.WPF.WebView2.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>$(CrissCrossWinTargetFrameworks)</TargetFrameworks>
<TargetFrameworks>$(CrissCrossWebviewTargetFrameworks)</TargetFrameworks>
<UseWpf>true</UseWpf>
<Nullable>enable</Nullable>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
Expand Down

0 comments on commit 4ad58dc

Please sign in to comment.