-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #199 from LanceMcCarthy/main-dev
Update workflows and TFM
- Loading branch information
Showing
7 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
SolutionPath: src\MediaFileManager\MediaFileManager.sln | ||
Configuration: Release | ||
AppxBundlePlatforms: "x86|x64|arm64" | ||
TFM: net7.0-windows10.0.19041.0 | ||
TFM: net6.0-windows10.0.19041.0 | ||
AppxBundleMode: Always | ||
AppxBuildMode: StoreUpload | ||
AppxPackageSigningEnabled: False | ||
|
@@ -97,12 +97,12 @@ jobs: | |
|
||
# Install the .NET SDK workload | ||
- name: Install .NET | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '7.0' | ||
dotnet-version: '8.0' | ||
|
||
- name: Setup MSBuild.exe | ||
uses: microsoft/[email protected].1 | ||
uses: microsoft/[email protected].2 | ||
|
||
# Use dotnet restore command for the solution (see RIDs https://docs.microsoft.com/en-us/dotnet/core/rid-catalog) | ||
- name: DotNet Restore | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
AppxPackageDirectory: D:\a\MediaFileManager\MediaFileManager\src\MediaFileManager\PackageProject\SideLoadPackages\ | ||
ArtifactsFilePath: D:\a\MediaFileManager\MediaFileManager\src\MediaFileManager\PackageProject\SideLoadPackages\SideLoadPackages.zip | ||
AppInstUri: https://dvlup.blob.core.windows.net/general-app-files/Installers/MediaFileManager/ | ||
TFM: net7.0-windows10.0.19041.0 | ||
TFM: net6.0-windows10.0.19041.0 | ||
TargetPlatform: "x64" | ||
AppxBundlePlatforms: "x86|x64|arm64" | ||
AppxBundleMode: Always | ||
|
@@ -37,7 +37,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
|
@@ -94,12 +94,12 @@ jobs: | |
|
||
# Install the .NET SDK workload | ||
- name: Install .NET | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '7.0' | ||
dotnet-version: '8.0' | ||
|
||
- name: Setup MSBuild.exe | ||
uses: microsoft/[email protected].1 | ||
uses: microsoft/[email protected].2 | ||
|
||
# Use dotnet restore command for the solution (see RIDs https://docs.microsoft.com/en-us/dotnet/core/rid-catalog) | ||
- name: DotNet Restore | ||
|
@@ -126,7 +126,7 @@ jobs: | |
# This automatically distributes the sideLoad package, which users can visit the index.html page and run the appinstaller | ||
- name: Uploading appInstaller to Azure Blob | ||
id: sideload-blob-upload | ||
uses: LanceMcCarthy/Action-AzureBlobUpload@v1.9.0 | ||
uses: LanceMcCarthy/Action-AzureBlobUpload@v3 | ||
with: | ||
connection_string: "${{ secrets.AZURE_DVLUP_BLOB_CONNECTION_STRING }}" | ||
container_name: general-app-files | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
build_dev: | ||
runs-on: windows-latest | ||
env: | ||
TFM: net7.0-windows10.0.19041.0 | ||
TFM: net6.0-windows10.0.19041.0 | ||
WpfProjectPath: src\MediaFileManager\MediaFileManager.Desktop\MediaFileManager.Desktop.csproj | ||
WappProjectPath: src\MediaFileManager\PackageProject\PackageProject.wapproj | ||
SolutionPath: src\MediaFileManager\MediaFileManager.sln | ||
|
@@ -48,19 +48,19 @@ jobs: | |
# echo "Output (using deprecated set-output): ${{ steps.version-creator.outputs.APP_VERSION }}" | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# Install the .NET SDK workload | ||
- name: Install .NET | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '7.0' | ||
dotnet-version: '8.0' | ||
|
||
# Add msbuild to the PATH: https://github.com/microsoft/setup-msbuild | ||
- name: Setup MSBuild.exe | ||
uses: microsoft/[email protected].1 | ||
uses: microsoft/[email protected].2 | ||
|
||
# Use dotnet restore command for the solution (see RIDs https://docs.microsoft.com/en-us/dotnet/core/rid-catalog) | ||
- name: DotNet Restore | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
CommonProjectPath: src\MediaFileManager\MediaFileManager.Common\MediaFileManager.Common.csproj | ||
WpfProjectPath: src\MediaFileManager\MediaFileManager.Desktop\MediaFileManager.Desktop.csproj | ||
SolutionPath: src\MediaFileManager\MediaFileManager.sln | ||
TFM: net7.0-windows10.0.19041.0 | ||
TFM: net6.0-windows10.0.19041.0 | ||
TargetPlatform: "x64" | ||
AppxBuildMode: CI | ||
AppxBundlePlatforms: "x86|x64|arm64" | ||
|
@@ -31,7 +31,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
|
@@ -70,12 +70,12 @@ jobs: | |
SetAssemblyFileVersion $assemblyInfoPath "${{ steps.version-creator.outputs.APP_VERSION }}" | ||
- name: Install .NET | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '7.0' | ||
dotnet-version: '8.0' | ||
|
||
- name: Setup MSBuild.exe | ||
uses: microsoft/[email protected].1 | ||
uses: microsoft/[email protected].2 | ||
with: | ||
msbuild-architecture: x64 | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/MediaFileManager/MediaFileManager.Common/MediaFileManager.Common.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/MediaFileManager/MediaFileManager.Desktop/MediaFileManager.Desktop.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters