This repository has been archived by the owner on Jan 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to Grabacr07/VirtualDesktop#57 commit c0f93aea77129850dc3f4442…
…bc37900ece3d7131 --HG-- branch : Win11
- Loading branch information
squidly
committed
Sep 4, 2021
1 parent
f7a3323
commit 85636cd
Showing
68 changed files
with
3,092 additions
and
2,063 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# .NET Desktop | ||
# Build and run tests for .NET Desktop or Windows classic desktop solutions. | ||
# Add steps that publish symbols, save build artifacts, and more: | ||
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net | ||
|
||
pool: | ||
vmImage: 'windows-latest' | ||
|
||
variables: | ||
solution: 'source/VirtualDesktop.sln' | ||
buildPlatform: 'Any CPU' | ||
buildConfiguration: 'Release' | ||
|
||
steps: | ||
- task: DotNetCoreCLI@2 | ||
displayName: 'dotnet build' | ||
inputs: | ||
command: 'build' | ||
projects: '$(solution)' | ||
arguments: '-c $(buildConfiguration)' | ||
|
||
- task: DotNetCoreCLI@2 | ||
displayName: 'dotnet pack' | ||
inputs: | ||
command: pack | ||
packagesToPack: '$(solution)' | ||
packDirectory: '$(Build.ArtifactStagingDirectory)' | ||
nobuild: true | ||
versioningScheme: 'off' | ||
arguments: '-c $(buildConfiguration)' | ||
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/release')) | ||
|
||
- task: PublishBuildArtifacts@1 | ||
displayName: 'publish artifact: drop' | ||
inputs: | ||
PathtoPublish: '$(Build.ArtifactStagingDirectory)' | ||
ArtifactName: 'drop' | ||
publishLocation: 'Container' | ||
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/release')) |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/* | ||
!/.gitignore | ||
!/*.bat |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
dotnet build ..\source\VirtualDesktop.sln -c Release | ||
dotnet pack ..\source\VirtualDesktop.sln -c Release --no-build -o %CD% |
6 changes: 0 additions & 6 deletions
6
VirtualDesktop-master/samples/VirtualDesktop.Showcase/App.config
This file was deleted.
Oops, something went wrong.
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
11 changes: 1 addition & 10 deletions
11
VirtualDesktop-master/samples/VirtualDesktop.Showcase/Properties/AssemblyInfo.cs
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 |
---|---|---|
@@ -1,15 +1,6 @@ | ||
using System.Reflection; | ||
using System.Runtime.InteropServices; | ||
using System.Runtime.InteropServices; | ||
using System.Windows; | ||
|
||
[assembly: AssemblyTitle("VirtualDesktop.Showcase")] | ||
[assembly: AssemblyCompany("grabacr.net")] | ||
[assembly: AssemblyProduct("VirtualDesktop")] | ||
[assembly: AssemblyDescription("C# wrapper for IVirtualDesktopManager on Windows 10.")] | ||
[assembly: AssemblyCopyright("Copyright © 2015 Manato KAMEYA")] | ||
|
||
[assembly: ComVisible(false)] | ||
[assembly: Guid("5B4544B8-3EF0-4E9F-8D60-DD605AD99725")] | ||
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)] | ||
|
||
[assembly: AssemblyVersion("1.0.0.0")] |
63 changes: 0 additions & 63 deletions
63
VirtualDesktop-master/samples/VirtualDesktop.Showcase/Properties/Resources.Designer.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.