diff --git a/GitVersionConfig.yaml b/GitVersionConfig.yaml index 8b2a23b6f..75dcf2aef 100644 --- a/GitVersionConfig.yaml +++ b/GitVersionConfig.yaml @@ -1,3 +1,3 @@ mode: ContinuousDeployment assembly-versioning-scheme: MajorMinorPatch -next-version: 4.0.0 \ No newline at end of file +next-version: 5.0.0 \ No newline at end of file diff --git a/build.cake b/build.cake new file mode 100644 index 000000000..c303bd50d --- /dev/null +++ b/build.cake @@ -0,0 +1,8 @@ +var projectName = "Orchestra"; +var projectsToPackage = new [] { "Orchestra.Core", "Orchestra.Shell.MahApps", "Orchestra.Shell.Ribbon.Fluent", "Orchestra.Shell.Ribbon.Microsoft", "Orchestra.Shell.TaskRunner" }; +var company = "WildGums"; +var startYear = 2010; +var defaultRepositoryUrl = string.Format("https://github.com/{0}/{1}", company, projectName); + +#l "./deployment/cake/variables.cake" +#l "./deployment/cake/tasks.cake" diff --git a/build.ps1 b/build.ps1 new file mode 100644 index 000000000..82529cf60 --- /dev/null +++ b/build.ps1 @@ -0,0 +1,235 @@ +########################################################################## +# This is the Cake bootstrapper script for PowerShell. +# This file was downloaded from https://github.com/cake-build/resources +# Feel free to change this file to fit your needs. +########################################################################## + +<# + +.SYNOPSIS +This is a Powershell script to bootstrap a Cake build. + +.DESCRIPTION +This Powershell script will download NuGet if missing, restore NuGet tools (including Cake) +and execute your Cake build script with the parameters you provide. + +.PARAMETER Script +The build script to execute. +.PARAMETER Target +The build script target to run. +.PARAMETER Configuration +The build configuration to use. +.PARAMETER Verbosity +Specifies the amount of information to be displayed. +.PARAMETER ShowDescription +Shows description about tasks. +.PARAMETER DryRun +Performs a dry run. +.PARAMETER Experimental +Uses the nightly builds of the Roslyn script engine. +.PARAMETER Mono +Uses the Mono Compiler rather than the Roslyn script engine. +.PARAMETER SkipToolPackageRestore +Skips restoring of packages. +.PARAMETER ScriptArgs +Remaining arguments are added here. + +.LINK +https://cakebuild.net + +#> + +[CmdletBinding()] +Param( + [string]$Script = "build.cake", + [string]$Target, + [string]$Configuration, + [ValidateSet("Quiet", "Minimal", "Normal", "Verbose", "Diagnostic")] + [string]$Verbosity, + [switch]$ShowDescription, + [Alias("WhatIf", "Noop")] + [switch]$DryRun, + [switch]$Experimental, + [switch]$Mono, + [switch]$SkipToolPackageRestore, + [Parameter(Position=0,Mandatory=$false,ValueFromRemainingArguments=$true)] + [string[]]$ScriptArgs +) + +[Reflection.Assembly]::LoadWithPartialName("System.Security") | Out-Null +function MD5HashFile([string] $filePath) +{ + if ([string]::IsNullOrEmpty($filePath) -or !(Test-Path $filePath -PathType Leaf)) + { + return $null + } + + [System.IO.Stream] $file = $null; + [System.Security.Cryptography.MD5] $md5 = $null; + try + { + $md5 = [System.Security.Cryptography.MD5]::Create() + $file = [System.IO.File]::OpenRead($filePath) + return [System.BitConverter]::ToString($md5.ComputeHash($file)) + } + finally + { + if ($file -ne $null) + { + $file.Dispose() + } + } +} + +function GetProxyEnabledWebClient +{ + $wc = New-Object System.Net.WebClient + $proxy = [System.Net.WebRequest]::GetSystemWebProxy() + $proxy.Credentials = [System.Net.CredentialCache]::DefaultCredentials + $wc.Proxy = $proxy + return $wc +} + +Write-Host "Preparing to run build script..." + +if(!$PSScriptRoot){ + $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent +} + +$TOOLS_DIR = Join-Path $PSScriptRoot "tools" +$ADDINS_DIR = Join-Path $TOOLS_DIR "Addins" +$MODULES_DIR = Join-Path $TOOLS_DIR "Modules" +$NUGET_EXE = Join-Path $TOOLS_DIR "nuget.exe" +$CAKE_EXE = Join-Path $TOOLS_DIR "Cake/Cake.exe" +$NUGET_URL = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" +$PACKAGES_CONFIG = Join-Path $TOOLS_DIR "packages.config" +$PACKAGES_CONFIG_MD5 = Join-Path $TOOLS_DIR "packages.config.md5sum" +$ADDINS_PACKAGES_CONFIG = Join-Path $ADDINS_DIR "packages.config" +$MODULES_PACKAGES_CONFIG = Join-Path $MODULES_DIR "packages.config" + +# Make sure tools folder exists +if ((Test-Path $PSScriptRoot) -and !(Test-Path $TOOLS_DIR)) { + Write-Verbose -Message "Creating tools directory..." + New-Item -Path $TOOLS_DIR -Type directory | out-null +} + +# Make sure that packages.config exist. +if (!(Test-Path $PACKAGES_CONFIG)) { + Write-Verbose -Message "Downloading packages.config..." + try { + $wc = GetProxyEnabledWebClient + $wc.DownloadFile("https://cakebuild.net/download/bootstrapper/packages", $PACKAGES_CONFIG) } catch { + Throw "Could not download packages.config." + } +} + +# Try find NuGet.exe in path if not exists +if (!(Test-Path $NUGET_EXE)) { + Write-Verbose -Message "Trying to find nuget.exe in PATH..." + $existingPaths = $Env:Path -Split ';' | Where-Object { (![string]::IsNullOrEmpty($_)) -and (Test-Path $_ -PathType Container) } + $NUGET_EXE_IN_PATH = Get-ChildItem -Path $existingPaths -Filter "nuget.exe" | Select -First 1 + if ($NUGET_EXE_IN_PATH -ne $null -and (Test-Path $NUGET_EXE_IN_PATH.FullName)) { + Write-Verbose -Message "Found in PATH at $($NUGET_EXE_IN_PATH.FullName)." + $NUGET_EXE = $NUGET_EXE_IN_PATH.FullName + } +} + +# Try download NuGet.exe if not exists +if (!(Test-Path $NUGET_EXE)) { + Write-Verbose -Message "Downloading NuGet.exe..." + try { + $wc = GetProxyEnabledWebClient + $wc.DownloadFile($NUGET_URL, $NUGET_EXE) + } catch { + Throw "Could not download NuGet.exe." + } +} + +# Save nuget.exe path to environment to be available to child processed +$ENV:NUGET_EXE = $NUGET_EXE + +# Restore tools from NuGet? +if(-Not $SkipToolPackageRestore.IsPresent) { + Push-Location + Set-Location $TOOLS_DIR + + # Check for changes in packages.config and remove installed tools if true. + [string] $md5Hash = MD5HashFile($PACKAGES_CONFIG) + if((!(Test-Path $PACKAGES_CONFIG_MD5)) -Or + ($md5Hash -ne (Get-Content $PACKAGES_CONFIG_MD5 ))) { + Write-Verbose -Message "Missing or changed package.config hash..." + Get-ChildItem -Exclude packages.config,nuget.exe,Cake.Bakery | + Remove-Item -Recurse + } + + Write-Verbose -Message "Restoring tools from NuGet..." + $NuGetOutput = Invoke-Expression "&`"$NUGET_EXE`" install -ExcludeVersion -OutputDirectory `"$TOOLS_DIR`"" + + if ($LASTEXITCODE -ne 0) { + Throw "An error occurred while restoring NuGet tools." + } + else + { + $md5Hash | Out-File $PACKAGES_CONFIG_MD5 -Encoding "ASCII" + } + Write-Verbose -Message ($NuGetOutput | out-string) + + Pop-Location +} + +# Restore addins from NuGet +if (Test-Path $ADDINS_PACKAGES_CONFIG) { + Push-Location + Set-Location $ADDINS_DIR + + Write-Verbose -Message "Restoring addins from NuGet..." + $NuGetOutput = Invoke-Expression "&`"$NUGET_EXE`" install -ExcludeVersion -OutputDirectory `"$ADDINS_DIR`"" + + if ($LASTEXITCODE -ne 0) { + Throw "An error occurred while restoring NuGet addins." + } + + Write-Verbose -Message ($NuGetOutput | out-string) + + Pop-Location +} + +# Restore modules from NuGet +if (Test-Path $MODULES_PACKAGES_CONFIG) { + Push-Location + Set-Location $MODULES_DIR + + Write-Verbose -Message "Restoring modules from NuGet..." + $NuGetOutput = Invoke-Expression "&`"$NUGET_EXE`" install -ExcludeVersion -OutputDirectory `"$MODULES_DIR`"" + + if ($LASTEXITCODE -ne 0) { + Throw "An error occurred while restoring NuGet modules." + } + + Write-Verbose -Message ($NuGetOutput | out-string) + + Pop-Location +} + +# Make sure that Cake has been installed. +if (!(Test-Path $CAKE_EXE)) { + Throw "Could not find Cake.exe at $CAKE_EXE" +} + + + +# Build Cake arguments +$cakeArguments = @("$Script"); +if ($Target) { $cakeArguments += "-target=$Target" } +if ($Configuration) { $cakeArguments += "-configuration=$Configuration" } +if ($Verbosity) { $cakeArguments += "-verbosity=$Verbosity" } +if ($ShowDescription) { $cakeArguments += "-showdescription" } +if ($DryRun) { $cakeArguments += "-dryrun" } +if ($Experimental) { $cakeArguments += "-experimental" } +if ($Mono) { $cakeArguments += "-mono" } +$cakeArguments += $ScriptArgs + +# Start Cake +Write-Host "Running build script..." +&$CAKE_EXE $cakeArguments +exit $LASTEXITCODE diff --git a/deployment/cake/continuaci.cake b/deployment/cake/continuaci.cake new file mode 100644 index 000000000..83544ed17 --- /dev/null +++ b/deployment/cake/continuaci.cake @@ -0,0 +1,32 @@ +public string GetContinuaCIVariable(string variableName, string defaultValue) +{ + var argumentValue = Argument(variableName, "non-existing"); + if (argumentValue != "non-existing") + { + Information("Variable '{0}' is specified via an argument", variableName); + + return argumentValue; + } + + if (ContinuaCI.IsRunningOnContinuaCI) + { + var buildServerVariables = ContinuaCI.Environment.Variable; + if (buildServerVariables.ContainsKey(variableName)) + { + Information("Variable '{0}' is specified via Continua CI", variableName); + + return buildServerVariables[variableName]; + } + } + + if (HasEnvironmentVariable(variableName)) + { + Information("Variable '{0}' is specified via an environment variable", variableName); + + return EnvironmentVariable(variableName); + } + + Information("Variable '{0}' is not specified, returning default value", variableName); + + return defaultValue; +} \ No newline at end of file diff --git a/deployment/cake/tasks.cake b/deployment/cake/tasks.cake new file mode 100644 index 000000000..f0f3e310b --- /dev/null +++ b/deployment/cake/tasks.cake @@ -0,0 +1,143 @@ +Information("Running target '{0}'", target); +Information("Using output directory '{0}'", outputRootDirectory); + +//------------------------------------------------------------- + +Task("RestorePackages") + .Does(() => +{ + var solutions = GetFiles("./**/*.sln"); + + foreach(var solution in solutions) + { + Information("Restoring packages for {0}", solution); + + var nuGetRestoreSettings = new NuGetRestoreSettings(); + + if (!string.IsNullOrWhiteSpace(nuGetPackageSources)) + { + var sources = new List(); + + foreach (var splitted in nuGetPackageSources.Split(new [] { ';' }, StringSplitOptions.RemoveEmptyEntries)) + { + sources.Add(splitted); + } + + if (sources.Count > 0) + { + nuGetRestoreSettings.Source = sources; + } + } + + NuGetRestore(solution, nuGetRestoreSettings); + } +}); + +//------------------------------------------------------------- + +// Note: it might look weird that this is dependent on restore packages, +// but to clean, the msbuild projects must be able to load. However, they need +// some targets files that come in via packages + +Task("Clean") + .IsDependentOn("RestorePackages") + .Does(() => +{ + if (DirectoryExists(outputRootDirectory)) + { + DeleteDirectory(outputRootDirectory, new DeleteDirectorySettings() + { + Force = true, + Recursive = true + }); + } + + foreach (var platform in platforms) + { + Information("Cleaning output for platform '{0}'", platform.Value); + + MSBuild(solutionFileName, configurator => + configurator.SetConfiguration(configurationName) + .SetVerbosity(Verbosity.Minimal) + .SetMSBuildPlatform(MSBuildPlatform.x86) + .SetPlatformTarget(platform.Value) + .WithTarget("Clean")); + } +}); + +//------------------------------------------------------------- + +Task("UpdateInfo") + .Does(() => +{ + Information("Updating assembly info to '{0}'", versionFullSemVer); + + var assemblyInfoParseResult = ParseAssemblyInfo(solutionAssemblyInfoFileName); + + var assemblyInfo = new AssemblyInfoSettings { + Company = assemblyInfoParseResult.Company, + Version = versionMajorMinorPatch, + FileVersion = versionMajorMinorPatch, + InformationalVersion = versionFullSemVer, + Copyright = string.Format("Copyright © {0} {1} - {2}", company, startYear, DateTime.Now.Year) + }; + + CreateAssemblyInfo(solutionAssemblyInfoFileName, assemblyInfo); +}); + +//------------------------------------------------------------- + +Task("Build") + .IsDependentOn("Clean") + .IsDependentOn("UpdateInfo") + .Does(() => +{ + var msBuildSettings = new MSBuildSettings { + Verbosity = Verbosity.Quiet, // Verbosity.Diagnostic + ToolVersion = MSBuildToolVersion.VS2017, + Configuration = configurationName, + MSBuildPlatform = MSBuildPlatform.x86, // Always require x86, see platform for actual target platform + PlatformTarget = PlatformTarget.MSIL + }; + + // TODO: Enable GitLink / SourceLink, see RepositoryUrl, RepositoryBranchName, RepositoryCommitId variables + + MSBuild(solutionFileName, msBuildSettings); +}); + +//------------------------------------------------------------- + +Task("Package") + .IsDependentOn("Build") + .Does(() => +{ + foreach (var projectToPackage in projectsToPackage) + { + Information("Packaging '{0}'", projectsToPackage); + + var msBuildSettings = new MSBuildSettings { + Verbosity = Verbosity.Minimal, // Verbosity.Diagnostic + ToolVersion = MSBuildToolVersion.VS2017, + Configuration = configurationName, + MSBuildPlatform = MSBuildPlatform.x86, // Always require x86, see platform for actual target platform + PlatformTarget = PlatformTarget.MSIL + }; + + msBuildSettings.Properties["ConfigurationName"] = new List(new [] { configurationName }); + msBuildSettings.Properties["PackageVersion"] = new List(new [] { versionNuGet }); + + msBuildSettings = msBuildSettings.WithTarget("pack"); + + var projectFileName = string.Format("./src/{0}/{0}.csproj", projectToPackage); + MSBuild(projectFileName, msBuildSettings); + } +}); + +//------------------------------------------------------------- + +Task("Default") + .IsDependentOn("Build"); + +//------------------------------------------------------------- + +RunTarget(target); \ No newline at end of file diff --git a/deployment/cake/variables.cake b/deployment/cake/variables.cake new file mode 100644 index 000000000..f3e7ad82d --- /dev/null +++ b/deployment/cake/variables.cake @@ -0,0 +1,24 @@ +#l "./continuaci.cake" + +var buildServerVariables = ContinuaCI.Environment.Variable; + +var target = GetContinuaCIVariable("Target", "Default"); +var versionMajorMinorPatch = GetContinuaCIVariable("GitVersion_MajorMinorPatch", "3.0.0"); +var versionFullSemVer = GetContinuaCIVariable("GitVersion_FullSemVer", "3.0.0-alpha.1"); +var versionNuGet = GetContinuaCIVariable("GitVersion_NuGetVersion", "3.0.0-alpha0001"); +var solutionName = GetContinuaCIVariable("SolutionName", string.Format("{0}.sln", projectName)); +var configurationName = GetContinuaCIVariable("ConfigurationName", "Release"); +var outputRootDirectory = GetContinuaCIVariable("OutputRootDirectory", string.Format("./output/{0}", configurationName)); + +var nuGetPackageSources = GetContinuaCIVariable("NuGetPackageSources", string.Empty); +var repositoryUrl = GetContinuaCIVariable("RepositoryUrl", defaultRepositoryUrl); +var repositoryBranchName = GetContinuaCIVariable("RepositoryBranchName", string.Empty); +var repositoryCommitId = GetContinuaCIVariable("RepositoryCommitId", string.Empty); + +var solutionAssemblyInfoFileName = "./src/SolutionAssemblyInfo.cs"; +var solutionFileName = string.Format("./src/{0}", solutionName); +var platforms = new Dictionary(); +platforms["AnyCPU"] = PlatformTarget.MSIL; +//platforms["x86"] = PlatformTarget.x86; +//platforms["x64"] = PlatformTarget.x64; +//platforms["arm"] = PlatformTarget.ARM; \ No newline at end of file diff --git a/deployment/finalbuilder/Orchestra.CreatePackages.fbp7 b/deployment/finalbuilder/Orchestra.CreatePackages.fbp7 deleted file mode 100644 index a08782821..000000000 --- a/deployment/finalbuilder/Orchestra.CreatePackages.fbp7 +++ /dev/null @@ -1,2136 +0,0 @@ - - - - - - - {4BF41996-ECE4-4FE7-A1DA-51214FA50A74} - - - - False - True - Main - {C0D868AA-7F00-4745-B013-4B669D15ED7B} - - - FinalBuilderAction - 0 - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - True - False - False - False - - - - False - False - - 0 - - - - 0 - True - 1000 - - - - True - False - jwOr - - - - - - 0 - - False - True - True - True - ftString - False - False - False - False - - 0 - smNone - %FBPROJECTDIR%\..\.. - 0 - 1000 - False - SolutionRoot - - - - - - - 0 - - False - True - True - True - ftString - False - False - False - False - - 0 - smNone - %FBPROJECTDIR%\..\..\output\debug - 0 - 1000 - False - OutputRoot - - - - - - - 0 - - False - True - True - True - ftString - False - False - False - False - - 0 - smNone - 1.0.0-unstable0001 - 0 - 1000 - False - NuGetVersion - - - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - True - False - False - False - - - - False - False - - 0 - - - - 0 - True - 1000 - - - - True - False - jwOr - - - - - - 0 - - True - - - - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - - - 0 - - True - False - False - False - - - - False - False - - 0 - - - - 0 - True - 1000 - - - - True - False - jwOr - - - - - - 0 - - True - - - - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - - - 0 - - True - False - False - False - - - - False - False - - 0 - - - - 0 - True - 1000 - - - - True - False - jwOr - - - - - - 0 - - True - - - - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - - - - 0 - - False - False - True - True - False - True - False - %NuGetOutputRoot% - False - False - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - - - - 0 - - True - True - %NuGetOutputFinal% - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - False - True - True - True - ftDefault - False - False - False - False - - 0 - smNone - pkgs - 0 - 1000 - False - PackagesDirectoryName - - - - - - - 0 - - False - [cfData,cfAttrib,cfTimestamps] - 0 - %NuGetOutputIntermediate%\%PackagesDirectoryName% - False - False - False - False - False - False - False - True - False - - - - - - - [] - False - False - False - False - False - False - False - False - False - False - False - False - True - False - - - - - - False - False - False - True - False - - False - False - - True - - - - [] - True - False - False - False - False - - True - - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 1 - 1 - 0 - 1 - False - False - 0 - 0 - tpNormal - False - False - 10 - 1000 - 30 - [] - %FBPROJECTDIR%\..\NuGet\template - False - False - False - False - 2 - [] - False - False - False - False - False - False - False - - - - - - - {D259DC65-F35D-4571-A445-147C0D1D13AD} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - {D259DC65-F35D-4571-A445-147C0D1D13AD} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - {D259DC65-F35D-4571-A445-147C0D1D13AD} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - {D259DC65-F35D-4571-A445-147C0D1D13AD} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - {D259DC65-F35D-4571-A445-147C0D1D13AD} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - - True - False - OnFailure - {19D8CEDE-E5D2-4BC2-B5D6-F9E5BED2E025} - - - FinalBuilderAction - 0 - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - False - False - - - - {D259DC65-F35D-4571-A445-147C0D1D13AD} - - - FinalBuilderAction - 0 - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - btString - - - - - False - False - False - NuSpecFile - vtProject - - - - - - - 0 - - False - True - True - True - ftString - False - False - False - False - - 0 - smNone - %TargetRootDirectory%\%Name%\%Name%.nuspec - 0 - 1000 - False - NuSpecFile - - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - {33F5508A-F8BE-4E63-9935-AE89A1775983} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - {33F5508A-F8BE-4E63-9935-AE89A1775983} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - {33F5508A-F8BE-4E63-9935-AE89A1775983} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - {33F5508A-F8BE-4E63-9935-AE89A1775983} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - {33F5508A-F8BE-4E63-9935-AE89A1775983} - 0 - - - - - False - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - {33F5508A-F8BE-4E63-9935-AE89A1775983} - 0 - - - - - False - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - - {4AB5A374-36C2-49A6-AA55-A0480BFF4E02} - 0 - - - - - True - True - False - False - False - False - False - - 0 - - - - 0 - 1000 - False - - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - {E0773A2F-8610-4C4D-AC25-A84D335A7D63} - - - - True - False - True - False - False - - False - False - - False - False - - 0 - 0 - 1000 - False - True - 2 - %NuSpecFile% - - %NuGetOutputFinal% - - - - False - False - - - - - - - Name - {4185FF34-DE1F-4FFC-923E-5B2C41F703CC} - paString - - - TargetRootDirectory - {67313F40-A360-430F-B64B-B96BB2253BA9} - paString - - - BaseDirectory - {19E8F3D1-E5C5-421E-BE74-8AA2FFA9B11F} - paString - - - AdditionalFileCopies - {ABDDD40C-2EA0-48F0-99B3-34BF7A785EC8} - paString - - - - - False - False - - - - {33F5508A-F8BE-4E63-9935-AE89A1775983} - - - FinalBuilderAction - 0 - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - btBoolean - - false - - - False - False - False - FileExists - vtProject - - - - - - - 0 - - True - feIgnore - True - %Source% - - False - False - False - False - - 0 - 0 - 1000 - False - True - FileExists - - - - - - - 0 - - True - False - False - False - - - - False - False - - 0 - - - - 0 - True - 1000 - - - - True - False - jwOr - - - - - - 0 - - False - [cfData,cfAttrib,cfTimestamps] - 0 - %Target% - False - False - False - False - False - False - False - True - False - - - - - - - [] - False - False - False - False - False - False - False - False - False - False - False - False - True - False - - - - - - False - False - False - True - False - - False - False - - False - - - - [] - True - False - False - False - False - - True - - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 1 - 1 - 0 - 1 - False - False - 0 - 0 - tpNormal - False - False - 10 - 1000 - 30 - [] - %Source% - False - False - False - False - 2 - [] - False - False - False - False - False - False - False - - - - - - - Source - {784B5657-14B6-4F38-BDB4-D61DA709633B} - paString - - - Target - {B01F9F9D-97B7-4074-9F28-2D619CE1CE11} - paString - - - Name - {B5F4C5B7-EFAF-4E5E-8E1D-41689F394D65} - paString - - - AdditionalFileCopies - {8D412EDB-0B13-4CC1-ABE6-32DBCE4BA7CC} - paString - - - - - False - False - - - - {4AB5A374-36C2-49A6-AA55-A0480BFF4E02} - - - FinalBuilderAction - 0 - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - btString - - - - - False - False - False - CurrentPackagesFileName - vtProject - - - btString - - - - - False - False - False - PackageId - vtProject - - - btString - - - - - False - False - False - PackageVersion - vtProject - - - - - - - 0 - - True - - - True - True - True - 1 - 1 - - False - - False - False - False - False - - False - mtAll - False - 0 - 0 - - trOriginalFile - %NuGetVersion% - 1000 - [VERSION] - %NuSpecFile% - False - False - tfDontFail - False - False - False - False - True - - - - - - - 0 - - True - True - True - PackagesConfigFileSet - - False - False - True - False - False - - 0 - 0 - 1000 - False - - %ProjectDirectory% - - - PackagesConfigFileSet - qtNone - spNone - - False - True - fsNone - - PATTERNLIST - - - False - packages.config - True - - - - EXCLUDEPATTERNLIST - - - - - - - - - - 0 - - False - True - True - False - CurrentPackagesFileName - PackagesConfigFileSet - False - True - %ProjectDirectory%\packages.config - False - False - False - True - False - False - False - - 0 - 0 - False - 1000 - False - False - True - CurrentPackagesFileName - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - False - id - - True - True - False - - False - False - PackageId - False - False - False - False - - 0 - HighestMSXML - 0 - True - 1000 - False - False - True - False - True - - - %NuSpecFile% - /package/metadata/dependencies/dependency - - - Try - 0 - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - False - version - - - - - True - True - False - - False - False - False - False - - 0 - HighestMSXML - 0 - True - 1000 - False - True - False - True - PackageVersion - - %CurrentPackagesFileName% - /packages/package[@id=&#39;%PackageId%&#39;] - - - - - - - 0 - - False - version - - - - - True - True - False - - False - False - False - False - - 0 - %PackageVersion% - True - HighestMSXML - 0 - False - True - 1000 - False - False - False - True - - %NuSpecFile% - - - - - - - - Catch - 0 - - True - - - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - End - 0 - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - - - - 0 - - - - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - False - id - - True - True - False - - False - False - PackageId - False - False - False - False - - 0 - HighestMSXML - 0 - True - 1000 - False - False - True - False - True - - - %NuSpecFile% - /package/metadata/dependencies/group/dependency - - - Try - 0 - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - 0 - - False - version - - - - - True - True - False - - False - False - False - False - - 0 - HighestMSXML - 0 - True - 1000 - False - True - False - True - PackageVersion - - %CurrentPackagesFileName% - /packages/package[@id=&#39;%PackageId%&#39;] - - - - - - - 0 - - False - version - - - - - True - True - False - - False - False - False - False - - 0 - %PackageVersion% - True - HighestMSXML - 0 - False - True - 1000 - False - False - False - True - - %NuSpecFile% - - - - - - - - Catch - 0 - - True - - - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - End - 0 - - True - True - False - False - False - False - - 0 - 0 - 1000 - False - - - - - - - - - NuSpecFile - {F079F155-4BCF-4838-874C-4E338519392B} - paString - - - ProjectDirectory - {107386D7-41FB-4711-A835-8C70C8C9B751} - paString - - - - - - Project - - btString - - %SolutionRoot%\output - - Paths - False - False - False - OutputRoot - vtProject - - - btString - - %OutputRoot% - - Paths - True - False - False - BuildOutput - vtProject - - - btString - - - - Paths - False - False - False - SolutionRoot - vtProject - - - btString - - %OutputRoot%\packages - - Paths - True - False - False - NuGetOutputRoot - vtProject - - - btString - - %NuGetOutputRoot%\intermediate - - Paths - True - False - False - NuGetOutputIntermediate - vtProject - - - btString - - %NuGetOutputRoot%\final - - Paths - True - False - False - NuGetOutputFinal - vtProject - - - btVariant - - - - NuGet - False - False - False - NuGetPackages - vtProject - - - btString - - - - NuGet - False - False - False - PackagesDirectoryName - vtProject - - - btString - - - - Versions - False - False - False - NuGetVersion - vtProject - - - btString - - - - NuGet - False - False - False - NuGetFilesTempLoop - vtProject - - - btString - - %SolutionRoot%\src - - Paths - True - False - False - SourceRoot - vtProject - - - - - - - PowerShell - - - diff --git a/deployment/nuget/template/Orchestra.Core/Orchestra.Core.nuspec b/deployment/nuget/template/Orchestra.Core/Orchestra.Core.nuspec deleted file mode 100644 index ec9aae4ec..000000000 --- a/deployment/nuget/template/Orchestra.Core/Orchestra.Core.nuspec +++ /dev/null @@ -1,32 +0,0 @@ - - - - Orchestra.Core - [VERSION] - Orchestra.Core - WildGums - WildGums - - - The library for all modules created for the Orchestra shell. - - - - - mvvm orchestra shell prism framework wpf - - false - Copyright WildGums 2010 - 2015 - - en-US - https://github.com/WildGums/Orchestra - - - - - - - - - - \ No newline at end of file diff --git a/deployment/nuget/template/Orchestra.Shell.MahApps/Orchestra.Shell.MahApps.nuspec b/deployment/nuget/template/Orchestra.Shell.MahApps/Orchestra.Shell.MahApps.nuspec deleted file mode 100644 index 18e1a727b..000000000 --- a/deployment/nuget/template/Orchestra.Shell.MahApps/Orchestra.Shell.MahApps.nuspec +++ /dev/null @@ -1,35 +0,0 @@ - - - - Orchestra.Shell.MahApps - [VERSION] - Orchestra.Shell.MahApps - WildGums - WildGums - - - The MahApps shell for Orchestra based applications. - - - - - mvvm orchestra shell prism framework wpf mahapps - - false - Copyright WildGums 2010 - 2015 - - en-US - https://github.com/WildGums/Orchestra - - - - - - - - - - - - - \ No newline at end of file diff --git a/deployment/nuget/template/Orchestra.Shell.Ribbon.Fluent/Orchestra.Shell.Ribbon.Fluent.nuspec b/deployment/nuget/template/Orchestra.Shell.Ribbon.Fluent/Orchestra.Shell.Ribbon.Fluent.nuspec deleted file mode 100644 index 849ce06cb..000000000 --- a/deployment/nuget/template/Orchestra.Shell.Ribbon.Fluent/Orchestra.Shell.Ribbon.Fluent.nuspec +++ /dev/null @@ -1,34 +0,0 @@ - - - - Orchestra.Shell.Ribbon.Fluent - [VERSION] - Orchestra.Shell.Ribbon.Fluent - WildGums - WildGums - - - The Ribbon.Fluent shell for Orchestra based applications. - - - - - mvvm orchestra shell prism framework wpf fluent ribbon - - false - Copyright WildGums 2010 - 2015 - - en-US - https://github.com/WildGums/Orchestra - - - - - - - - - - - - \ No newline at end of file diff --git a/deployment/nuget/template/Orchestra.Shell.Ribbon.Microsoft/Orchestra.Shell.Ribbon.Microsoft.nuspec b/deployment/nuget/template/Orchestra.Shell.Ribbon.Microsoft/Orchestra.Shell.Ribbon.Microsoft.nuspec deleted file mode 100644 index 1ca7d56e0..000000000 --- a/deployment/nuget/template/Orchestra.Shell.Ribbon.Microsoft/Orchestra.Shell.Ribbon.Microsoft.nuspec +++ /dev/null @@ -1,32 +0,0 @@ - - - - Orchestra.Shell.Ribbon.Microsoft - [VERSION] - Orchestra.Shell.Ribbon.Microsoft - WildGums - WildGums - - - The Ribbon.Microsoft shell for Orchestra based applications. - - - - - mvvm orchestra shell prism framework wpf microsoft ribbon - - false - Copyright WildGums 2010 - 2015 - - en-US - https://github.com/WildGums/Orchestra - - - - - - - - - - \ No newline at end of file diff --git a/deployment/nuget/template/Orchestra.Shell.TaskRunner/Orchestra.Shell.TaskRunner.nuspec b/deployment/nuget/template/Orchestra.Shell.TaskRunner/Orchestra.Shell.TaskRunner.nuspec deleted file mode 100644 index e33335507..000000000 --- a/deployment/nuget/template/Orchestra.Shell.TaskRunner/Orchestra.Shell.TaskRunner.nuspec +++ /dev/null @@ -1,35 +0,0 @@ - - - - Orchestra.Shell.TaskRunner - [VERSION] - Orchestra.Shell.TaskRunner - WildGums - WildGums - - - The TaskRunner shell for Orchestra based applications. - - - - - mvvm orchestra shell prism framework wpf task runner taskrunner - - false - Copyright WildGums 2010 - 2015 - - en-US - https://github.com/WildGums/Orchestra - - - - - - - - - - - - - \ No newline at end of file diff --git a/scripts - Build - Debug.bat b/scripts - Build - Debug.bat deleted file mode 100644 index b1ae2b9b5..000000000 --- a/scripts - Build - Debug.bat +++ /dev/null @@ -1,10 +0,0 @@ -@echo off - -IF NOT "%VS110COMNTOOLS%" == "" (call "%VS110COMNTOOLS%vsvars32.bat") -IF NOT "%VS120COMNTOOLS%" == "" (call "%VS120COMNTOOLS%vsvars32.bat") -IF NOT "%VS130COMNTOOLS%" == "" (call "%VS130COMNTOOLS%vsvars32.bat") -IF NOT "%VS140COMNTOOLS%" == "" (call "%VS140COMNTOOLS%vsvars32.bat") - - -for /F %%A in ('dir /b src\*.sln') do call devenv src\%%A /build "Debug" -pause \ No newline at end of file diff --git a/scripts - Build - Release.bat b/scripts - Build - Release.bat deleted file mode 100644 index d5d02651e..000000000 --- a/scripts - Build - Release.bat +++ /dev/null @@ -1,10 +0,0 @@ -@echo off - -IF NOT "%VS110COMNTOOLS%" == "" (call "%VS110COMNTOOLS%vsvars32.bat") -IF NOT "%VS120COMNTOOLS%" == "" (call "%VS120COMNTOOLS%vsvars32.bat") -IF NOT "%VS130COMNTOOLS%" == "" (call "%VS130COMNTOOLS%vsvars32.bat") -IF NOT "%VS140COMNTOOLS%" == "" (call "%VS140COMNTOOLS%vsvars32.bat") - - -for /F %%A in ('dir /b src\*.sln') do call devenv src\%%A /build "Release" -pause \ No newline at end of file diff --git a/scripts - Clean all.bat b/scripts - Clean all.bat deleted file mode 100644 index effd5ea1a..000000000 --- a/scripts - Clean all.bat +++ /dev/null @@ -1,7 +0,0 @@ -REM Deleting packages -for /d %%p in (".\lib\*.*") do rmdir "%%p" /s /q - -REM Deleting output -rmdir .\output /s /q - -pause \ No newline at end of file diff --git a/scripts - Restore packages.bat b/scripts - Restore packages.bat deleted file mode 100644 index 529df1f15..000000000 --- a/scripts - Restore packages.bat +++ /dev/null @@ -1,4 +0,0 @@ -for /f %%a in ('dir /b src\*.sln') do call tools\nuget\nuget.exe restore src\%%a -PackagesDirectory .\lib - - -pause \ No newline at end of file diff --git a/src/Directory.build.project.props b/src/Directory.build.project.props new file mode 100644 index 000000000..58f9dc4fb --- /dev/null +++ b/src/Directory.build.project.props @@ -0,0 +1,14 @@ + + + + + wildgums + https://github.com/WildGums/Assets/raw/master/packages/logo.png + https://github.com/WildGums/Orchestra + https://github.com/WildGums/Orchestra/blob/develop/LICENSE + https://github.com/WildGums/Orchestra + + + \ No newline at end of file diff --git a/src/Directory.build.props b/src/Directory.build.props new file mode 100644 index 000000000..7357ec90f --- /dev/null +++ b/src/Directory.build.props @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/src/Directory.build.shared.explicit.props b/src/Directory.build.shared.explicit.props new file mode 100644 index 000000000..8b34f8b2f --- /dev/null +++ b/src/Directory.build.shared.explicit.props @@ -0,0 +1,91 @@ + + + + + + bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml + + + + + + + + + + + + + + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + True + True + Resources.resx + + + + + + $(DefineConstants);NETSTANDARD;NETSTANDARD2_0;NS;NS20 + + + + + + + + + + + $(DefineConstants);NET;NET46;NET460 + + + + $(DefineConstants);NET;NET46;NET461 + + + + $(DefineConstants);NET;NET46;NET462 + + + + + + + + + + + $(DefineConstants);NET;NET47;NET470 + + + + + + + + + + + $(DefineConstants);UAP;NETFX_CORE + + + + + + + + \ No newline at end of file diff --git a/src/Directory.build.shared.implicit.props b/src/Directory.build.shared.implicit.props new file mode 100644 index 000000000..91e2a31e7 --- /dev/null +++ b/src/Directory.build.shared.implicit.props @@ -0,0 +1,35 @@ + + + + + $(NoWarn);CS1591;CS1998;NU1603;NU1605;NU1608;NU1701 + $(NoError);CS1591;CS1998;NU1603;NU1605;NU1608;NU1701 + true + false + true + false + false + $(ProjectDir)..\..\output\$(ConfigurationName)\ + Release + $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb;.xml + + + + full + + + + pdbonly + + + + + $(MSBuildToolsPath)\Microsoft.CSharp.targets + + + + + + \ No newline at end of file diff --git a/src/Directory.build.targets b/src/Directory.build.targets new file mode 100644 index 000000000..4de98b5c7 --- /dev/null +++ b/src/Directory.build.targets @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET45/App.config b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET45/App.config deleted file mode 100644 index 8e1564635..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET45/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET45/Orchestra.Examples.MahApps.NET45.csproj b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET45/Orchestra.Examples.MahApps.NET45.csproj deleted file mode 100644 index 156cf7237..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET45/Orchestra.Examples.MahApps.NET45.csproj +++ /dev/null @@ -1,167 +0,0 @@ - - - - - Debug - AnyCPU - {AD1EAA55-6B88-45F5-B58B-5CFA4B015D9F} - WinExe - Properties - Orchestra.Examples.MahApps - Orchestra.Examples.MahApps - v4.5 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - - AnyCPU - true - full - false - ..\..\..\..\output\debug\NET45\Examples.MahApps\ - TRACE;DEBUG;NET;NET45 - prompt - 4 - 1591;1998 - true - - - AnyCPU - pdbonly - true - ..\..\..\..\output\release\NET45\Examples.MahApps\ - TRACE;NET;NET45 - prompt - 4 - 1591;1998 - true - - - ..\Orchestra.Examples.MahApps.Shared\Resources\Icons\Logo.ico - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net45\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\Catel.MVVM.dll - - - ..\..\..\..\lib\ControlzEx.3.0.2.4\lib\net45\ControlzEx.dll - - - ..\..\..\..\lib\MahApps.Metro.1.6.0\lib\net45\MahApps.Metro.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\netstandard1.0\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net45\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net45\Orc.FileSystem.dll - - - - - - - - - ..\..\..\..\lib\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\System.Windows.Interactivity.dll - True - - - - - - - - 4.0 - - - - - - - - - - - - - - - - {e004866f-01a2-467d-8c77-5216eb9ca71e} - Orchestra.Core.NET45 - - - {0e099ab6-235d-4ae1-96c8-3e2d85ff6af1} - Orchestra.Shell.MahApps.NET45 - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET45/packages.config b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET45/packages.config deleted file mode 100644 index 73db9e4f5..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET45/packages.config +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET46/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET46/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET46/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET46/Orchestra.Examples.MahApps.NET46.csproj b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET46/Orchestra.Examples.MahApps.NET46.csproj deleted file mode 100644 index e2191c219..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET46/Orchestra.Examples.MahApps.NET46.csproj +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Debug - AnyCPU - {35B471A7-6345-4F6B-9DF4-1A0352C5E69B} - WinExe - Properties - Orchestra.Examples.MahApps - Orchestra.Examples.MahApps - v4.6 - 512 - - - - - true - full - false - ..\..\..\..\output\debug\NET46\Examples.MahApps\ - TRACE;DEBUG;NET;NET46 - prompt - 4 - true - 1591;1998 - - - pdbonly - true - ..\..\..\..\output\release\NET46\Examples.MahApps\ - TRACE;NET;NET46 - prompt - 4 - true - 1591;1998 - - - Orchestra.Examples.MahApps.App - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net46\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\Catel.MVVM.dll - - - ..\..\..\..\lib\ControlzEx.3.0.2.4\lib\net45\ControlzEx.dll - - - ..\..\..\..\lib\MahApps.Metro.1.6.0\lib\net45\MahApps.Metro.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net46\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - - - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\System.Windows.Interactivity.dll - True - - - - - - - - - - - - - - - - {49fcbe71-a14f-4f99-bfce-8065554c6274} - Orchestra.Core.NET46 - - - {1bdf7b8f-f397-41fa-b57c-b18a2b537fe4} - Orchestra.Shell.MahApps.NET46 - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET46/packages.config b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET46/packages.config deleted file mode 100644 index 1f3ae5abc..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET46/packages.config +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Orchestra.Examples.MahApps.NET47.csproj b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Orchestra.Examples.MahApps.NET47.csproj deleted file mode 100644 index c9a06fd1a..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Orchestra.Examples.MahApps.NET47.csproj +++ /dev/null @@ -1,160 +0,0 @@ - - - - - Debug - AnyCPU - {608C0720-4276-47B0-B131-7A2267735C58} - WinExe - Properties - Orchestra.Examples.MahApps - Orchestra.Examples.MahApps - v4.7 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - - - AnyCPU - true - full - false - ..\..\..\..\output\debug\NET47\Examples.MahApps\ - TRACE;DEBUG;NET;NET47 - prompt - 4 - 1591;1998 - true - false - - - AnyCPU - pdbonly - true - ..\..\..\..\output\release\NET47\Examples.MahApps\ - TRACE;NET;NET47 - prompt - 4 - 1591;1998 - true - false - - - ..\Orchestra.Examples.MahApps.Shared\Resources\Icons\Logo.ico - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net47\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net47\Catel.MVVM.dll - - - ..\..\..\..\lib\ControlzEx.3.0.2.4\lib\net462\ControlzEx.dll - - - ..\..\..\..\lib\MahApps.Metro.1.6.0\lib\net45\MahApps.Metro.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net47\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - - - - ..\..\..\..\lib\ControlzEx.3.0.2.4\lib\net462\System.Windows.Interactivity.dll - True - - - - - - - - 4.0 - - - - - - - - - - - - - - {805e1f16-7a10-42a2-82ba-5012412144bb} - Orchestra.Core.NET47 - - - {e16a2bf1-3801-4615-a79e-52cedf260a89} - Orchestra.Shell.MahApps.NET47 - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/Entypo-license.txt b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/Entypo-license.txt deleted file mode 100644 index 1db3d78bd..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/Entypo-license.txt +++ /dev/null @@ -1,3 +0,0 @@ -Entypo (http://www.entypo.com/) is created by Daniel Bruce and released under the Creative Commons, Share Alike/Attribution license. - -http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/Entypo.ttf b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/Entypo.ttf deleted file mode 100644 index d6d7687eb..000000000 Binary files a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/Entypo.ttf and /dev/null differ diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/Icons.xaml b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/Icons.xaml deleted file mode 100644 index 04d8bc864..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/Icons.xaml +++ /dev/null @@ -1,5138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/IconsNonShared.xaml b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/IconsNonShared.xaml deleted file mode 100644 index 9fbaf491c..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/IconsNonShared.xaml +++ /dev/null @@ -1,5138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/WindowsIcons-license.txt b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/WindowsIcons-license.txt deleted file mode 100644 index d22c6d05c..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/Resources/WindowsIcons-license.txt +++ /dev/null @@ -1,62 +0,0 @@ -# License - -Please carefully understand the license and download the latest icons at ModernUIIcons.com. - -## Understand Your Rights -No Attribution and No Derived Works -http://creativecommons.org/licenses/by-nd/3.0/ * - -- If your project is open source include this license file in the source. -- Nothing is needed in the front facing project (UNLESS you - are using any of the icons listed below in the attribution section). -- Commercial use is not only allowed but encouraged. If it is an icon - in the attribution list below, you still need to attribute those! -- Do not distribute the entire package (I've allowed this dozens of - times for open source projects, but email me first). - -## Creator -- Austin Andrews (@templarian) - -## Contributor** -- Jay Zawrotny (@JayZawrotny) - - A Bunch -- Oren Nachman - - appbar.chevron.down - - appbar.chevron.up - - appbar.chevron.left - - appbar.chevron.right - -## Derived Works -- Alex Peattie - - Social: http://www.alexpeattie.com/projects/justvector_icons/ - -## Attribution*** -- Kris Vandermotten (@kvandermotten) - - appbar.medical.pulse -- Constantin Kichinsky (@kichinsky) - - appbar.currency.rubles - - appbar.currency.grivna -- Massimo Savazzi (@msavazzi) - - List of missing exported icons -- Proletkult Graphik, from The Noun Project - - appbar.draw.pen (inspired) -- Olivier Guin, from The Noun Project - - appbar.draw.marker -- Gibran Bisio, from The Noun Project - - appbar.draw.bucket -Andrew Forrester, from The Noun Project - - appbar.fingerprint - -* The license is for attribution, but this is not required. -** Developers and designers that emailed Templarian the source .design icons to be added into the package. PNGs also accepted, but may take longer to be added. -*** Icons I've copied so closely you want to attribute them and are also under the CC license. - -Contact -- http://templarian.com/ -- admin[@]templarian[.]com - -* Does not apply to copyrighted logos -- Skype -- Facebook -- Twitter -- etc... diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/app.config b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/app.config deleted file mode 100644 index f658b3d5a..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/app.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/packages.config b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/packages.config deleted file mode 100644 index 60f2be637..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.NET47/packages.config +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.Shared/Orchestra.Examples.MahApps.Shared.projitems b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.Shared/Orchestra.Examples.MahApps.Shared.projitems deleted file mode 100644 index b9c552f47..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.Shared/Orchestra.Examples.MahApps.Shared.projitems +++ /dev/null @@ -1,115 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - true - 1b9b5a92-56d2-4250-a3cc-993eeffb2e86 - - - Orchestra.Examples.MahApps - - - - - - Code - App.xaml - - - - - - Code - - - - - - - - - - - - - - ControlsView.xaml - - - ExampleDataWindow.xaml - - - ExampleDialogWindow.xaml - - - Code - MainView.xaml - - - PersonsView.xaml - - - PersonView.xaml - - - ExampleDialogCloseView.xaml - - - ExampleDialogOkCancelView.xaml - - - ExampleDialogOkCancelApplyView.xaml - - - - - - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - - - Designer - MSBuild:Compile - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.Shared/Orchestra.Examples.MahApps.Shared.shproj b/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.Shared/Orchestra.Examples.MahApps.Shared.shproj deleted file mode 100644 index b83c71c0f..000000000 --- a/src/Examples/Orchestra.Examples.MahApps/Orchestra.Examples.MahApps.Shared/Orchestra.Examples.MahApps.Shared.shproj +++ /dev/null @@ -1,12 +0,0 @@ - - - - 1b9b5a92-56d2-4250-a3cc-993eeffb2e86 - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/App.config b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/App.config deleted file mode 100644 index 8d24ab934..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/App.config +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/Orchestra.Examples.Ribbon.Fluent.NET45.csproj b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/Orchestra.Examples.Ribbon.Fluent.NET45.csproj deleted file mode 100644 index 54ace21fd..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/Orchestra.Examples.Ribbon.Fluent.NET45.csproj +++ /dev/null @@ -1,179 +0,0 @@ - - - - - Debug - AnyCPU - {9A59D96C-3D7B-414E-B097-BD6F4B01C457} - WinExe - Properties - Orchestra.Examples.Ribbon - Orchestra.Examples.Ribbon - v4.5 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - - AnyCPU - true - full - false - ..\..\..\..\output\debug\NET45\Examples.Ribbon.Fluent\ - TRACE;DEBUG;NET;NET45 - prompt - 4 - 1591;1998 - true - - - AnyCPU - pdbonly - true - ..\..\..\..\output\release\NET45\Examples.Ribbon.Fluent\ - TRACE;NET;NET45 - prompt - 4 - 1591;1998 - true - - - ..\Orchestra.Examples.Ribbon.Fluent.Shared\Resources\Icons\Logo.ico - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net45\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\Catel.MVVM.dll - - - ..\..\..\..\lib\ControlzEx.3.0.2.4\lib\net45\ControlzEx.dll - - - ..\..\..\..\lib\Fluent.Ribbon.6.1.0.233\lib\net45\Fluent.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\netstandard1.0\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net45\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net45\Orc.FileSystem.dll - - - - - - - - - ..\..\..\..\lib\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\System.Windows.Interactivity.dll - True - - - - - - - - 4.0 - - - - - - - - - - - - Resources\Fonts\fontawesome-webfont.ttf - - - - - - - - - {e004866f-01a2-467d-8c77-5216eb9ca71e} - Orchestra.Core.NET45 - - - {fa9c977b-585b-4ac5-a870-168bf0a53ba8} - Orchestra.Shell.Ribbon.Fluent.NET45 - - - - - - - - Resources\Icons\Logo.ico - - - Resources\Images\exit.png - - - Resources\Images\explorer.png - - - Resources\Images\file_menu.png - - - Resources\Images\keyboard.png - - - Resources\Images\open.png - - - Resources\Images\print.png - - - Resources\Images\refresh.png - - - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/packages.config b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/packages.config deleted file mode 100644 index 0782af405..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET45/packages.config +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/FodyWeavers.xml b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/FodyWeavers.xml deleted file mode 100644 index 1b0181664..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/FodyWeavers.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/Orchestra.Examples.Ribbon.Fluent.NET46.csproj b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/Orchestra.Examples.Ribbon.Fluent.NET46.csproj deleted file mode 100644 index 23e1e60f7..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/Orchestra.Examples.Ribbon.Fluent.NET46.csproj +++ /dev/null @@ -1,166 +0,0 @@ - - - - - Debug - AnyCPU - {9E8D0926-2268-4729-AE4B-375DF6FD9C4A} - WinExe - Properties - Orchestra.Examples.Ribbon - Orchestra.Examples.Ribbon - v4.6 - 512 - - - - - true - full - false - ..\..\..\..\output\debug\NET46\Examples.Ribbon.Fluent\ - TRACE;DEBUG;NET;NET46 - prompt - 4 - true - 1591;1998 - - - pdbonly - true - ..\..\..\..\output\release\NET46\Examples.Ribbon.Fluent\ - TRACE;NET;NET46 - prompt - 4 - true - 1591;1998 - - - Orchestra.Examples.Ribbon.App - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net46\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\Catel.MVVM.dll - - - ..\..\..\..\lib\ControlzEx.3.0.2.4\lib\net45\ControlzEx.dll - - - ..\..\..\..\lib\Fluent.Ribbon.6.1.0.233\lib\net45\Fluent.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net46\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - - - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\System.Windows.Interactivity.dll - True - - - - - - - - - - - - - - - - - - - - - - - Resources\Fonts\fontawesome-webfont.ttf - - - - - Resources\Icons\Logo.ico - - - - - Resources\Images\exit.png - - - Resources\Images\explorer.png - - - Resources\Images\file_menu.png - - - Resources\Images\keyboard.png - - - Resources\Images\open.png - - - Resources\Images\print.png - - - Resources\Images\refresh.png - - - - - {49fcbe71-a14f-4f99-bfce-8065554c6274} - Orchestra.Core.NET46 - - - {4119563c-8dfa-458c-85ef-883983d7ea84} - Orchestra.Shell.Ribbon.Fluent.NET46 - - - - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/app.config b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/app.config deleted file mode 100644 index d6dc2004d..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/packages.config b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/packages.config deleted file mode 100644 index a62e88858..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET46/packages.config +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/FodyWeavers.xml b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/FodyWeavers.xml deleted file mode 100644 index 1b0181664..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/FodyWeavers.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/Orchestra.Examples.Ribbon.Fluent.NET47.csproj b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/Orchestra.Examples.Ribbon.Fluent.NET47.csproj deleted file mode 100644 index 102455488..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/Orchestra.Examples.Ribbon.Fluent.NET47.csproj +++ /dev/null @@ -1,172 +0,0 @@ - - - - - Debug - AnyCPU - {850DDB5D-1694-4D89-AF95-A8E31305A53C} - WinExe - Properties - Orchestra.Examples.Ribbon - Orchestra.Examples.Ribbon - v4.7 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - - - AnyCPU - true - full - false - ..\..\..\..\output\debug\NET47\Examples.Ribbon.Fluent\ - TRACE;DEBUG;NET;NET47 - prompt - 4 - true - 1591;1998 - false - - - AnyCPU - pdbonly - true - ..\..\..\..\output\release\NET47\Examples.Ribbon.Fluent\ - TRACE;NET;NET47 - prompt - 4 - true - 1591;1998 - false - - - ..\Orchestra.Examples.Ribbon.Fluent.Shared\Resources\Icons\Logo.ico - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net47\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net47\Catel.MVVM.dll - - - ..\..\..\..\lib\ControlzEx.3.0.2.4\lib\net462\ControlzEx.dll - - - ..\..\..\..\lib\Fluent.Ribbon.6.1.0.233\lib\net462\Fluent.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net47\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\System.Windows.Interactivity.dll - True - - - - - - - - 4.0 - - - - - - - - - Resources\Fonts\fontawesome-webfont.ttf - - - - - - - {805e1f16-7a10-42a2-82ba-5012412144bb} - Orchestra.Core.NET47 - - - {24614a48-3155-4428-bdc4-7c79ae8cedc3} - Orchestra.Shell.Ribbon.Fluent.NET47 - - - - - - - - - - - Resources\Icons\Logo.ico - - - Resources\Images\exit.png - - - Resources\Images\explorer.png - - - Resources\Images\file_menu.png - - - Resources\Images\keyboard.png - - - Resources\Images\open.png - - - Resources\Images\print.png - - - Resources\Images\refresh.png - - - - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/app.config b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/app.config deleted file mode 100644 index 1c571255b..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/app.config +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/packages.config b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/packages.config deleted file mode 100644 index 3f2483a01..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.NET47/packages.config +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.Shared/Orchestra.Examples.Ribbon.Fluent.Shared.projitems b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.Shared/Orchestra.Examples.Ribbon.Fluent.Shared.projitems deleted file mode 100644 index 0ed9e6c7a..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.Shared/Orchestra.Examples.Ribbon.Fluent.Shared.projitems +++ /dev/null @@ -1,78 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - true - 0280e6b2-58e3-4379-9502-de186ced9577 - - - Orchestra.Examples.Ribbon - - - - - - App.xaml - - - - - - - - - - - Code - - - - - - - - - MainView.xaml - - - RibbonView.xaml - - - StatusBarView.xaml - - - - - - - - - - - - - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - - - Designer - MSBuild:Compile - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.Shared/Orchestra.Examples.Ribbon.Fluent.Shared.shproj b/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.Shared/Orchestra.Examples.Ribbon.Fluent.Shared.shproj deleted file mode 100644 index ed2428917..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Fluent/Orchestra.Examples.Ribbon.Fluent.Shared/Orchestra.Examples.Ribbon.Fluent.Shared.shproj +++ /dev/null @@ -1,12 +0,0 @@ - - - - 0280e6b2-58e3-4379-9502-de186ced9577 - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/App.config b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/App.config deleted file mode 100644 index 8e1564635..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/FodyWeavers.xml b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/FodyWeavers.xml deleted file mode 100644 index 1b0181664..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/FodyWeavers.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/Orchestra.Examples.Ribbon.Microsoft.NET45.csproj b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/Orchestra.Examples.Ribbon.Microsoft.NET45.csproj deleted file mode 100644 index 2fde730e1..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/Orchestra.Examples.Ribbon.Microsoft.NET45.csproj +++ /dev/null @@ -1,180 +0,0 @@ - - - - - Debug - AnyCPU - {FD2CE39E-2E7F-4EC2-A06C-3D78E3CEF22E} - WinExe - Properties - Orchestra.Examples.Ribbon - Orchestra.Examples.Ribbon - v4.5 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - - AnyCPU - true - full - false - ..\..\..\..\output\debug\NET45\Examples.Ribbon.Microsoft\ - TRACE;DEBUG;NET;NET45 - prompt - 4 - 1591;1998 - true - - - AnyCPU - pdbonly - true - ..\..\..\..\output\release\NET45\Examples.Ribbon.Microsoft\ - TRACE;NET;NET45 - prompt - 4 - 1591;1998 - true - - - ..\Orchestra.Examples.Ribbon.Microsoft.Shared\Resources\Icons\Logo.ico - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net45\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\Catel.MVVM.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\netstandard1.0\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net45\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net45\Orc.FileSystem.dll - - - - - - - - - ..\..\..\..\lib\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll - - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\System.Windows.Interactivity.dll - True - - - - - - - - 4.0 - - - - - - - - - - - - - - - - - - {e004866f-01a2-467d-8c77-5216eb9ca71e} - Orchestra.Core.NET45 - - - {6eba4b51-3705-4af7-a682-5bd5e7c80655} - Orchestra.Shell.Ribbon.Microsoft.NET45 - - - - - - - - MSBuild:Compile - Designer - - - - - - RibbonView.xaml - - - - - Resources\Icons\Logo.ico - - - Resources\Images\exit.png - - - Resources\Images\explorer.png - - - Resources\Images\file_menu.png - - - Resources\Images\keyboard.png - - - Resources\Images\open.png - - - Resources\Images\print.png - - - Resources\Images\refresh.png - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/packages.config b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/packages.config deleted file mode 100644 index f0ceff7e9..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET45/packages.config +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/FodyWeavers.xml b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/FodyWeavers.xml deleted file mode 100644 index 1b0181664..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/FodyWeavers.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/Orchestra.Examples.Ribbon.Microsoft.NET46.csproj b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/Orchestra.Examples.Ribbon.Microsoft.NET46.csproj deleted file mode 100644 index 493cede5b..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/Orchestra.Examples.Ribbon.Microsoft.NET46.csproj +++ /dev/null @@ -1,168 +0,0 @@ - - - - - Debug - AnyCPU - {55E914A8-0BCE-48FF-8DC3-D030F6738BC1} - WinExe - Properties - Orchestra.Examples.Ribbon - Orchestra.Examples.Ribbon.Microsoft - v4.6 - 512 - - - - - true - full - false - ..\..\..\..\output\debug\NET46\Examples.Ribbon.Microsoft\ - TRACE;DEBUG;NET;NET46 - prompt - 4 - true - 1591;1998 - - - pdbonly - true - ..\..\..\..\output\release\NET46\Examples.Ribbon.Microsoft\ - TRACE;NET;NET46 - prompt - 4 - true - 1591;1998 - - - Orchestra.Examples.Ribbon.App - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net46\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\Catel.MVVM.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\RibbonsControlLibrary\Microsoft.Windows.Shell.dll - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net46\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - - - ..\..\..\..\lib\RibbonsControlLibrary\RibbonControlsLibrary.dll - - - - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\System.Windows.Interactivity.dll - True - - - - - - - - - - - - - - - - - - - - - RibbonView.xaml - - - - - Resources\Icons\Logo.ico - - - - - Resources\Images\exit.png - - - Resources\Images\explorer.png - - - Resources\Images\file_menu.png - - - Resources\Images\keyboard.png - - - Resources\Images\open.png - - - Resources\Images\print.png - - - Resources\Images\refresh.png - - - - - MSBuild:Compile - Designer - - - - - {49fcbe71-a14f-4f99-bfce-8065554c6274} - Orchestra.Core.NET46 - - - {4c9af163-971d-49d2-8086-3b0e99a2e6ed} - Orchestra.Shell.Ribbon.Microsoft.NET46 - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/Views/RibbonView.xaml b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/Views/RibbonView.xaml deleted file mode 100644 index a9705637d..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/Views/RibbonView.xaml +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/Views/RibbonView.xaml.cs b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/Views/RibbonView.xaml.cs deleted file mode 100644 index 628c6527d..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/Views/RibbonView.xaml.cs +++ /dev/null @@ -1,35 +0,0 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2008 - 2014 WildGums. All rights reserved. -// -// -------------------------------------------------------------------------------------------------------------------- - - -namespace Orchestra.Examples.Ribbon.Views -{ - /// - /// Interaction logic for RibbonView.xaml. - /// - public partial class RibbonView - { - #region Constructors - /// - /// Initializes a new instance of the class. - /// - public RibbonView() - { - InitializeComponent(); - - ribbon.AddMinimizeAndMaximizeButtons(); - ribbon.AddAboutButton(); - } - #endregion - - protected override void OnViewModelChanged() - { - base.OnViewModelChanged(); - - recentlyUsedItemsRibbonGallery.SetValue(DataContextProperty, ViewModel); - } - } -} \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/packages.config b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/packages.config deleted file mode 100644 index 28310fe2f..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET46/packages.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/FodyWeavers.xml b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/FodyWeavers.xml deleted file mode 100644 index 1b0181664..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/FodyWeavers.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/Orchestra.Examples.Ribbon.Microsoft.NET47.csproj b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/Orchestra.Examples.Ribbon.Microsoft.NET47.csproj deleted file mode 100644 index c3df45dad..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/Orchestra.Examples.Ribbon.Microsoft.NET47.csproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - Debug - AnyCPU - {F092BDC9-B58A-4F43-A37B-BDCA9825FD03} - WinExe - Properties - Orchestra.Examples.Ribbon - Orchestra.Examples.Ribbon - v4.7 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - - - AnyCPU - true - full - false - ..\..\..\..\output\debug\NET47\Examples.Ribbon.Microsoft\ - TRACE;DEBUG;NET;NET47 - prompt - 4 - 1591;1998 - true - false - - - AnyCPU - pdbonly - true - ..\..\..\..\output\release\NET47\Examples.Ribbon.Microsoft\ - TRACE;NET;NET47 - prompt - 4 - 1591;1998 - true - false - - - ..\Orchestra.Examples.Ribbon.Microsoft.Shared\Resources\Icons\Logo.ico - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net47\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net47\Catel.MVVM.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net47\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - False - ..\..\..\..\lib\RibbonsControlLibrary\RibbonControlsLibrary.dll - - - - - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\System.Windows.Interactivity.dll - True - - - - - - - - 4.0 - - - - - - - - - - - - - - - - - - - {805e1f16-7a10-42a2-82ba-5012412144bb} - Orchestra.Core.NET47 - - - {f77a6406-6745-4eb1-bee4-42e5ac4eb0f6} - Orchestra.Shell.Ribbon.Microsoft.NET47 - - - - - MSBuild:Compile - Designer - - - - - - RibbonView.xaml - - - - - Resources\Icons\Logo.ico - - - Resources\Images\exit.png - - - Resources\Images\explorer.png - - - Resources\Images\file_menu.png - - - Resources\Images\keyboard.png - - - Resources\Images\open.png - - - Resources\Images\print.png - - - Resources\Images\refresh.png - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/Views/RibbonView.xaml b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/Views/RibbonView.xaml deleted file mode 100644 index 5314fda35..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/Views/RibbonView.xaml +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/Views/RibbonView.xaml.cs b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/Views/RibbonView.xaml.cs deleted file mode 100644 index 628c6527d..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/Views/RibbonView.xaml.cs +++ /dev/null @@ -1,35 +0,0 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2008 - 2014 WildGums. All rights reserved. -// -// -------------------------------------------------------------------------------------------------------------------- - - -namespace Orchestra.Examples.Ribbon.Views -{ - /// - /// Interaction logic for RibbonView.xaml. - /// - public partial class RibbonView - { - #region Constructors - /// - /// Initializes a new instance of the class. - /// - public RibbonView() - { - InitializeComponent(); - - ribbon.AddMinimizeAndMaximizeButtons(); - ribbon.AddAboutButton(); - } - #endregion - - protected override void OnViewModelChanged() - { - base.OnViewModelChanged(); - - recentlyUsedItemsRibbonGallery.SetValue(DataContextProperty, ViewModel); - } - } -} \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/app.config b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/app.config deleted file mode 100644 index f658b3d5a..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/app.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/packages.config b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/packages.config deleted file mode 100644 index c293043aa..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.NET47/packages.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.Shared/Orchestra.Examples.Ribbon.Microsoft.Shared.projitems b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.Shared/Orchestra.Examples.Ribbon.Microsoft.Shared.projitems deleted file mode 100644 index 76babb3f4..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.Shared/Orchestra.Examples.Ribbon.Microsoft.Shared.projitems +++ /dev/null @@ -1,57 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - true - 84d8f34f-57d6-45ad-9449-fb461698a3cf - - - Orchestra.Examples.Ribbon.Microsoft - - - - - - Code - App.xaml - - - - Code - - - - - - - - Code - MainView.xaml - - - StatusBarView.xaml - - - - - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - - - Designer - MSBuild:Compile - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.Shared/Orchestra.Examples.Ribbon.Microsoft.Shared.shproj b/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.Shared/Orchestra.Examples.Ribbon.Microsoft.Shared.shproj deleted file mode 100644 index 9a360e975..000000000 --- a/src/Examples/Orchestra.Examples.Ribbon.Microsoft/Orchestra.Examples.Ribbon.Microsoft.Shared/Orchestra.Examples.Ribbon.Microsoft.Shared.shproj +++ /dev/null @@ -1,12 +0,0 @@ - - - - 84d8f34f-57d6-45ad-9449-fb461698a3cf - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/App.config b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/App.config deleted file mode 100644 index 8e1564635..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/FodyWeavers.xml b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/FodyWeavers.xml deleted file mode 100644 index 1b0181664..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/FodyWeavers.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/Orchestra.Examples.TaskRunner.NET45.csproj b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/Orchestra.Examples.TaskRunner.NET45.csproj deleted file mode 100644 index 562832f84..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/Orchestra.Examples.TaskRunner.NET45.csproj +++ /dev/null @@ -1,144 +0,0 @@ - - - - - Debug - AnyCPU - {1FE13CD6-6F35-4C73-9FEB-AC1C4519362D} - WinExe - Properties - Orchestra.Examples.TaskRunner - Orchestra.Examples.TaskRunner - v4.5 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - - AnyCPU - true - full - false - ..\..\..\..\output\debug\NET45\Examples.TaskRunner\ - TRACE;DEBUG;NET;NET45 - prompt - 4 - 1591;1998 - true - - - AnyCPU - pdbonly - true - ..\..\..\..\output\release\NET45\Examples.TaskRunner\ - TRACE;NET;NET45 - prompt - 4 - 1591;1998 - true - - - ..\Orchestra.Examples.TaskRunner.Shared\Resources\Icons\Logo.ico - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net45\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\Catel.MVVM.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\netstandard1.0\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net45\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net45\Orc.FileSystem.dll - - - - - - - - - ..\..\..\..\lib\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\System.Windows.Interactivity.dll - True - - - - - - - - 4.0 - - - - - - - - - - - - - - - - - - {e004866f-01a2-467d-8c77-5216eb9ca71e} - Orchestra.Core.NET45 - - - {d43a799a-938e-428d-87a5-e5200b2b4c3f} - Orchestra.Shell.TaskRunner.NET45 - - - - - - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/packages.config b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/packages.config deleted file mode 100644 index f0ceff7e9..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET45/packages.config +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/FodyWeavers.xml b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/FodyWeavers.xml deleted file mode 100644 index 1b0181664..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/FodyWeavers.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/Orchestra.Examples.TaskRunner.NET46.csproj b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/Orchestra.Examples.TaskRunner.NET46.csproj deleted file mode 100644 index 4460a063a..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/Orchestra.Examples.TaskRunner.NET46.csproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - Debug - AnyCPU - {0E4E9B91-3FAA-40CE-868E-B6AB76F3D35F} - WinExe - Properties - Orchestra.Examples.TaskRunner - Orchestra.Examples.TaskRunner - v4.6 - 512 - - - - - true - full - false - ..\..\..\..\output\debug\NET46\Examples.TaskRunner\ - TRACE;DEBUG;NET;NET46 - prompt - 4 - true - 1591;1998 - - - pdbonly - true - ..\..\..\..\output\release\NET46\Examples.TaskRunner\ - TRACE;NET;NET46 - prompt - 4 - true - 1591;1998 - - - Orchestra.Examples.TaskRunner.App - - - ..\Orchestra.Examples.TaskRunner.Shared\Resources\Icons\Logo.ico - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net46\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\Catel.MVVM.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net46\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - - - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\System.Windows.Interactivity.dll - True - - - - - - - - - - - - - - - - {49fcbe71-a14f-4f99-bfce-8065554c6274} - Orchestra.Core.NET46 - - - {509f4f56-6d14-4f6e-bea5-cb77a49ba5c7} - Orchestra.Shell.TaskRunner.NET46 - - - - - - - - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/packages.config b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/packages.config deleted file mode 100644 index 28310fe2f..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET46/packages.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/FodyWeavers.xml b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/FodyWeavers.xml deleted file mode 100644 index 1b0181664..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/FodyWeavers.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/ModuleInitializer.cs b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/Orchestra.Examples.TaskRunner.NET47.csproj b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/Orchestra.Examples.TaskRunner.NET47.csproj deleted file mode 100644 index a2a7c24c3..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/Orchestra.Examples.TaskRunner.NET47.csproj +++ /dev/null @@ -1,137 +0,0 @@ - - - - - Debug - AnyCPU - {45857215-F067-4652-8C87-71E7D8F432A7} - WinExe - Properties - Orchestra.Examples.TaskRunner - Orchestra.Examples.TaskRunner - v4.7 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - - - AnyCPU - true - full - false - ..\..\..\..\output\debug\NET47\Examples.TaskRunner\ - TRACE;DEBUG;NET;NET47 - prompt - 4 - 1591;1998 - true - false - - - AnyCPU - pdbonly - true - ..\..\..\..\output\release\NET47\Examples.TaskRunner\ - TRACE;NET;NET47 - prompt - 4 - 1591;1998 - true - false - - - ..\Orchestra.Examples.TaskRunner.Shared\Resources\Icons\Logo.ico - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net47\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net47\Catel.MVVM.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net47\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\System.Windows.Interactivity.dll - True - - - - - - - - 4.0 - - - - - - - - - - - - - - - - {805e1f16-7a10-42a2-82ba-5012412144bb} - Orchestra.Core.NET47 - - - {2909c5c6-b2c7-49a4-bf8f-2225433effdf} - Orchestra.Shell.TaskRunner.NET47 - - - - - - - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/app.config b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/app.config deleted file mode 100644 index f658b3d5a..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/app.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/packages.config b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/packages.config deleted file mode 100644 index c293043aa..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.NET47/packages.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.Shared/Orchestra.Examples.TaskRunner.Shared.projitems b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.Shared/Orchestra.Examples.TaskRunner.Shared.projitems deleted file mode 100644 index eaa16d560..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.Shared/Orchestra.Examples.TaskRunner.Shared.projitems +++ /dev/null @@ -1,46 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - true - 4f1a8f2d-73ba-415d-b741-9ab66f2735dc - - - Orchestra.Examples.TaskRunner - - - - - - Code - App.xaml - - - - - - Code - - - - - SettingsView.xaml - - - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - - - Designer - MSBuild:Compile - - - \ No newline at end of file diff --git a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.Shared/Orchestra.Examples.TaskRunner.Shared.shproj b/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.Shared/Orchestra.Examples.TaskRunner.Shared.shproj deleted file mode 100644 index 485c3e491..000000000 --- a/src/Examples/Orchestra.Examples.TaskRunner/Orchestra.Examples.TaskRunner.Shared/Orchestra.Examples.TaskRunner.Shared.shproj +++ /dev/null @@ -1,12 +0,0 @@ - - - - 4f1a8f2d-73ba-415d-b741-9ab66f2735dc - - - - - - - - diff --git a/src/MethodTimeLogger.cs b/src/MethodTimeLogger.cs index ee3cadd3c..c39e9c39a 100644 --- a/src/MethodTimeLogger.cs +++ b/src/MethodTimeLogger.cs @@ -1,9 +1,10 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2008 - 2017 WildGums. All rights reserved. +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright (c) 2008 - 2018 WildGums. All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- + using System.Reflection; using Catel.Logging; using System; diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ApplicationWatchers/ApplicationWatcherBase.cs b/src/Orchestra.Core/ApplicationWatchers/ApplicationWatcherBase.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ApplicationWatchers/ApplicationWatcherBase.cs rename to src/Orchestra.Core/ApplicationWatchers/ApplicationWatcherBase.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ApplicationWatchers/CloseApplicationWatcherBase.cs b/src/Orchestra.Core/ApplicationWatchers/CloseApplicationWatcherBase.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ApplicationWatchers/CloseApplicationWatcherBase.cs rename to src/Orchestra.Core/ApplicationWatchers/CloseApplicationWatcherBase.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ApplicationWatchers/KeyPressApplicationWatcherBase.cs b/src/Orchestra.Core/ApplicationWatchers/KeyPressApplicationWatcherBase.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ApplicationWatchers/KeyPressApplicationWatcherBase.cs rename to src/Orchestra.Core/ApplicationWatchers/KeyPressApplicationWatcherBase.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ApplicationWatchers/KeyPressWindowWatcher.cs b/src/Orchestra.Core/ApplicationWatchers/KeyPressWindowWatcher.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ApplicationWatchers/KeyPressWindowWatcher.cs rename to src/Orchestra.Core/ApplicationWatchers/KeyPressWindowWatcher.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Behaviors/HintsBehavior.cs b/src/Orchestra.Core/Behaviors/HintsBehavior.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Behaviors/HintsBehavior.cs rename to src/Orchestra.Core/Behaviors/HintsBehavior.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Behaviors/RememberWindowSize.cs b/src/Orchestra.Core/Behaviors/RememberWindowSize.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Behaviors/RememberWindowSize.cs rename to src/Orchestra.Core/Behaviors/RememberWindowSize.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Collections/AdorneredTooltipsCollection.cs b/src/Orchestra.Core/Collections/AdorneredTooltipsCollection.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Collections/AdorneredTooltipsCollection.cs rename to src/Orchestra.Core/Collections/AdorneredTooltipsCollection.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Collections/Interfaces/IAdorneredTooltipsCollection.cs b/src/Orchestra.Core/Collections/Interfaces/IAdorneredTooltipsCollection.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Collections/Interfaces/IAdorneredTooltipsCollection.cs rename to src/Orchestra.Core/Collections/Interfaces/IAdorneredTooltipsCollection.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Commands/ToggleConfigurationCommandContainerBase.cs b/src/Orchestra.Core/Commands/ToggleConfigurationCommandContainerBase.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Commands/ToggleConfigurationCommandContainerBase.cs rename to src/Orchestra.Core/Commands/ToggleConfigurationCommandContainerBase.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Configuration/ConfigurationSynchronizerBase.cs b/src/Orchestra.Core/Configuration/ConfigurationSynchronizerBase.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Configuration/ConfigurationSynchronizerBase.cs rename to src/Orchestra.Core/Configuration/ConfigurationSynchronizerBase.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Configuration/Extensions/ConfigurationExtensions.cs b/src/Orchestra.Core/Configuration/Extensions/ConfigurationExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Configuration/Extensions/ConfigurationExtensions.cs rename to src/Orchestra.Core/Configuration/Extensions/ConfigurationExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/AnimatingTextBlock.cs b/src/Orchestra.Core/Controls/AnimatingTextBlock.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/AnimatingTextBlock.cs rename to src/Orchestra.Core/Controls/AnimatingTextBlock.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/BusyIndicator.xaml b/src/Orchestra.Core/Controls/BusyIndicator.xaml similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/BusyIndicator.xaml rename to src/Orchestra.Core/Controls/BusyIndicator.xaml diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/BusyIndicator.xaml.cs b/src/Orchestra.Core/Controls/BusyIndicator.xaml.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/BusyIndicator.xaml.cs rename to src/Orchestra.Core/Controls/BusyIndicator.xaml.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/FluidProgressBar.xaml b/src/Orchestra.Core/Controls/FluidProgressBar.xaml similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/FluidProgressBar.xaml rename to src/Orchestra.Core/Controls/FluidProgressBar.xaml diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/FluidProgressBar.xaml.cs b/src/Orchestra.Core/Controls/FluidProgressBar.xaml.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/FluidProgressBar.xaml.cs rename to src/Orchestra.Core/Controls/FluidProgressBar.xaml.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/KeyboardMappingControl.xaml b/src/Orchestra.Core/Controls/KeyboardMappingControl.xaml similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/KeyboardMappingControl.xaml rename to src/Orchestra.Core/Controls/KeyboardMappingControl.xaml diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/KeyboardMappingControl.xaml.cs b/src/Orchestra.Core/Controls/KeyboardMappingControl.xaml.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/KeyboardMappingControl.xaml.cs rename to src/Orchestra.Core/Controls/KeyboardMappingControl.xaml.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/MediaElementThreadFactory.cs b/src/Orchestra.Core/Controls/MediaElementThreadFactory.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/MediaElementThreadFactory.cs rename to src/Orchestra.Core/Controls/MediaElementThreadFactory.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/MediaElementThreadInfo.cs b/src/Orchestra.Core/Controls/MediaElementThreadInfo.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/MediaElementThreadInfo.cs rename to src/Orchestra.Core/Controls/MediaElementThreadInfo.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/VisualTargetPresentationSource.cs b/src/Orchestra.Core/Controls/VisualTargetPresentationSource.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/VisualTargetPresentationSource.cs rename to src/Orchestra.Core/Controls/VisualTargetPresentationSource.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/VisualWrapper.cs b/src/Orchestra.Core/Controls/VisualWrapper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Controls/VisualWrapper.cs rename to src/Orchestra.Core/Controls/VisualWrapper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/BooleanToThicknessConverter.cs b/src/Orchestra.Core/Converters/BooleanToThicknessConverter.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/BooleanToThicknessConverter.cs rename to src/Orchestra.Core/Converters/BooleanToThicknessConverter.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/CommandNameToStringConverter.cs b/src/Orchestra.Core/Converters/CommandNameToStringConverter.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/CommandNameToStringConverter.cs rename to src/Orchestra.Core/Converters/CommandNameToStringConverter.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/InputGestureToStringConverter.cs b/src/Orchestra.Core/Converters/InputGestureToStringConverter.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/InputGestureToStringConverter.cs rename to src/Orchestra.Core/Converters/InputGestureToStringConverter.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/KeyboardMappingToStringConverter.cs b/src/Orchestra.Core/Converters/KeyboardMappingToStringConverter.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/KeyboardMappingToStringConverter.cs rename to src/Orchestra.Core/Converters/KeyboardMappingToStringConverter.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/MessageButtonToCollapsingVisibilityConverter.cs b/src/Orchestra.Core/Converters/MessageButtonToCollapsingVisibilityConverter.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/MessageButtonToCollapsingVisibilityConverter.cs rename to src/Orchestra.Core/Converters/MessageButtonToCollapsingVisibilityConverter.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/MessageImageToTextConverter.cs b/src/Orchestra.Core/Converters/MessageImageToTextConverter.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/MessageImageToTextConverter.cs rename to src/Orchestra.Core/Converters/MessageImageToTextConverter.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/PathToStringConverter.cs b/src/Orchestra.Core/Converters/PathToStringConverter.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Converters/PathToStringConverter.cs rename to src/Orchestra.Core/Converters/PathToStringConverter.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Exceptions/OrchestraException.cs b/src/Orchestra.Core/Exceptions/OrchestraException.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Exceptions/OrchestraException.cs rename to src/Orchestra.Core/Exceptions/OrchestraException.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/ApplicationExtensions.cs b/src/Orchestra.Core/Extensions/ApplicationExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/ApplicationExtensions.cs rename to src/Orchestra.Core/Extensions/ApplicationExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/AssemblyExtensions.cs b/src/Orchestra.Core/Extensions/AssemblyExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/AssemblyExtensions.cs rename to src/Orchestra.Core/Extensions/AssemblyExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/DependencyObjectExtensions.cs b/src/Orchestra.Core/Extensions/DependencyObjectExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/DependencyObjectExtensions.cs rename to src/Orchestra.Core/Extensions/DependencyObjectExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/FrameworkElementExtensions.cs b/src/Orchestra.Core/Extensions/FrameworkElementExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/FrameworkElementExtensions.cs rename to src/Orchestra.Core/Extensions/FrameworkElementExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/IconExtensions.cs b/src/Orchestra.Core/Extensions/IconExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/IconExtensions.cs rename to src/Orchestra.Core/Extensions/IconExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/StringExtensions.cs b/src/Orchestra.Core/Extensions/StringExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/StringExtensions.cs rename to src/Orchestra.Core/Extensions/StringExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/WindowExtensions.cs b/src/Orchestra.Core/Extensions/WindowExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/WindowExtensions.cs rename to src/Orchestra.Core/Extensions/WindowExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/WindowExtensions.size.cs b/src/Orchestra.Core/Extensions/WindowExtensions.size.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Extensions/WindowExtensions.size.cs rename to src/Orchestra.Core/Extensions/WindowExtensions.size.cs diff --git a/src/Orchestra.Shell/Orchestra.Shell.Ribbon.Fluent/Orchestra.Shell.Ribbon.Fluent.NET46/FodyWeavers.xml b/src/Orchestra.Core/FodyWeavers.xml similarity index 94% rename from src/Orchestra.Shell/Orchestra.Shell.Ribbon.Fluent/Orchestra.Shell.Ribbon.Fluent.NET46/FodyWeavers.xml rename to src/Orchestra.Core/FodyWeavers.xml index c104f3d0b..f89d5ec93 100644 --- a/src/Orchestra.Shell/Orchestra.Shell.Ribbon.Fluent/Orchestra.Shell.Ribbon.Fluent.NET46/FodyWeavers.xml +++ b/src/Orchestra.Core/FodyWeavers.xml @@ -1,7 +1,7 @@  - + diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/AssemblyHelper.cs b/src/Orchestra.Core/Helpers/AssemblyHelper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/AssemblyHelper.cs rename to src/Orchestra.Core/Helpers/AssemblyHelper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/DotNetPatchHelper.cs b/src/Orchestra.Core/Helpers/DotNetPatchHelper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/DotNetPatchHelper.cs rename to src/Orchestra.Core/Helpers/DotNetPatchHelper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/FilterHelper.cs b/src/Orchestra.Core/Helpers/FilterHelper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/FilterHelper.cs rename to src/Orchestra.Core/Helpers/FilterHelper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/IconHelper.cs b/src/Orchestra.Core/Helpers/IconHelper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/IconHelper.cs rename to src/Orchestra.Core/Helpers/IconHelper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/LogHelper.cs b/src/Orchestra.Core/Helpers/LogHelper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/LogHelper.cs rename to src/Orchestra.Core/Helpers/LogHelper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/ScreenHelper.cs b/src/Orchestra.Core/Helpers/ScreenHelper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/ScreenHelper.cs rename to src/Orchestra.Core/Helpers/ScreenHelper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/StyleHelper.cs b/src/Orchestra.Core/Helpers/StyleHelper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/StyleHelper.cs rename to src/Orchestra.Core/Helpers/StyleHelper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/ThemeHelper.cs b/src/Orchestra.Core/Helpers/ThemeHelper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/ThemeHelper.cs rename to src/Orchestra.Core/Helpers/ThemeHelper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/VersionHelper.cs b/src/Orchestra.Core/Helpers/VersionHelper.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Helpers/VersionHelper.cs rename to src/Orchestra.Core/Helpers/VersionHelper.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Layers/HintsAdornerLayer.cs b/src/Orchestra.Core/Layers/HintsAdornerLayer.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Layers/HintsAdornerLayer.cs rename to src/Orchestra.Core/Layers/HintsAdornerLayer.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Layers/Interfaces/IAdornerLayer.cs b/src/Orchestra.Core/Layers/Interfaces/IAdornerLayer.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Layers/Interfaces/IAdornerLayer.cs rename to src/Orchestra.Core/Layers/Interfaces/IAdornerLayer.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Logging/FileLogListener.cs b/src/Orchestra.Core/Logging/FileLogListener.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Logging/FileLogListener.cs rename to src/Orchestra.Core/Logging/FileLogListener.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Logging/RichTextBoxLogListener.cs b/src/Orchestra.Core/Logging/RichTextBoxLogListener.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Logging/RichTextBoxLogListener.cs rename to src/Orchestra.Core/Logging/RichTextBoxLogListener.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Logging/StatusLogListener.cs b/src/Orchestra.Core/Logging/StatusLogListener.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Logging/StatusLogListener.cs rename to src/Orchestra.Core/Logging/StatusLogListener.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Logging/TextBoxLogListener.cs b/src/Orchestra.Core/Logging/TextBoxLogListener.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Logging/TextBoxLogListener.cs rename to src/Orchestra.Core/Logging/TextBoxLogListener.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/CanvasViewbox.cs b/src/Orchestra.Core/Markup/CanvasViewbox.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/CanvasViewbox.cs rename to src/Orchestra.Core/Markup/CanvasViewbox.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/FontImage.cs b/src/Orchestra.Core/Markup/FontImage.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/FontImage.cs rename to src/Orchestra.Core/Markup/FontImage.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/AppDomainTypeResolver.cs b/src/Orchestra.Core/Markup/Ricciolo/AppDomainTypeResolver.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/AppDomainTypeResolver.cs rename to src/Orchestra.Core/Markup/Ricciolo/AppDomainTypeResolver.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/BamlAssembly.cs b/src/Orchestra.Core/Markup/Ricciolo/BamlAssembly.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/BamlAssembly.cs rename to src/Orchestra.Core/Markup/Ricciolo/BamlAssembly.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/BamlBinaryReader.cs b/src/Orchestra.Core/Markup/Ricciolo/BamlBinaryReader.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/BamlBinaryReader.cs rename to src/Orchestra.Core/Markup/Ricciolo/BamlBinaryReader.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/BamlFile.cs b/src/Orchestra.Core/Markup/Ricciolo/BamlFile.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/BamlFile.cs rename to src/Orchestra.Core/Markup/Ricciolo/BamlFile.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/BamlRecordType.cs b/src/Orchestra.Core/Markup/Ricciolo/BamlRecordType.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/BamlRecordType.cs rename to src/Orchestra.Core/Markup/Ricciolo/BamlRecordType.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/DotNetType.cs b/src/Orchestra.Core/Markup/Ricciolo/DotNetType.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/DotNetType.cs rename to src/Orchestra.Core/Markup/Ricciolo/DotNetType.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/IDependencyPropertyDescriptor.cs b/src/Orchestra.Core/Markup/Ricciolo/IDependencyPropertyDescriptor.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/IDependencyPropertyDescriptor.cs rename to src/Orchestra.Core/Markup/Ricciolo/IDependencyPropertyDescriptor.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/IType.cs b/src/Orchestra.Core/Markup/Ricciolo/IType.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/IType.cs rename to src/Orchestra.Core/Markup/Ricciolo/IType.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/ITypeResolver.cs b/src/Orchestra.Core/Markup/Ricciolo/ITypeResolver.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/ITypeResolver.cs rename to src/Orchestra.Core/Markup/Ricciolo/ITypeResolver.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/KnownInfo.cs b/src/Orchestra.Core/Markup/Ricciolo/KnownInfo.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/KnownInfo.cs rename to src/Orchestra.Core/Markup/Ricciolo/KnownInfo.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/PropertyDeclaration.cs b/src/Orchestra.Core/Markup/Ricciolo/PropertyDeclaration.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/PropertyDeclaration.cs rename to src/Orchestra.Core/Markup/Ricciolo/PropertyDeclaration.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/ResourceName.cs b/src/Orchestra.Core/Markup/Ricciolo/ResourceName.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/ResourceName.cs rename to src/Orchestra.Core/Markup/Ricciolo/ResourceName.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/TypeDeclaration.cs b/src/Orchestra.Core/Markup/Ricciolo/TypeDeclaration.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/TypeDeclaration.cs rename to src/Orchestra.Core/Markup/Ricciolo/TypeDeclaration.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/WpfDependencyPropertyDescriptor.cs b/src/Orchestra.Core/Markup/Ricciolo/WpfDependencyPropertyDescriptor.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/WpfDependencyPropertyDescriptor.cs rename to src/Orchestra.Core/Markup/Ricciolo/WpfDependencyPropertyDescriptor.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlElement.cs b/src/Orchestra.Core/Markup/Ricciolo/XmlBamlElement.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlElement.cs rename to src/Orchestra.Core/Markup/Ricciolo/XmlBamlElement.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlNode.cs b/src/Orchestra.Core/Markup/Ricciolo/XmlBamlNode.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlNode.cs rename to src/Orchestra.Core/Markup/Ricciolo/XmlBamlNode.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlProperty.cs b/src/Orchestra.Core/Markup/Ricciolo/XmlBamlProperty.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlProperty.cs rename to src/Orchestra.Core/Markup/Ricciolo/XmlBamlProperty.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlPropertyElement.cs b/src/Orchestra.Core/Markup/Ricciolo/XmlBamlPropertyElement.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlPropertyElement.cs rename to src/Orchestra.Core/Markup/Ricciolo/XmlBamlPropertyElement.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlReader.cs b/src/Orchestra.Core/Markup/Ricciolo/XmlBamlReader.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlReader.cs rename to src/Orchestra.Core/Markup/Ricciolo/XmlBamlReader.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlText.cs b/src/Orchestra.Core/Markup/Ricciolo/XmlBamlText.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlBamlText.cs rename to src/Orchestra.Core/Markup/Ricciolo/XmlBamlText.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlNamespace.cs b/src/Orchestra.Core/Markup/Ricciolo/XmlNamespace.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlNamespace.cs rename to src/Orchestra.Core/Markup/Ricciolo/XmlNamespace.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlPIMapping.cs b/src/Orchestra.Core/Markup/Ricciolo/XmlPIMapping.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Markup/Ricciolo/XmlPIMapping.cs rename to src/Orchestra.Core/Markup/Ricciolo/XmlPIMapping.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/AboutInfo.cs b/src/Orchestra.Core/Models/AboutInfo.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/AboutInfo.cs rename to src/Orchestra.Core/Models/AboutInfo.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/CommandInfo.cs b/src/Orchestra.Core/Models/CommandInfo.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/CommandInfo.cs rename to src/Orchestra.Core/Models/CommandInfo.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/Hint.cs b/src/Orchestra.Core/Models/Hint.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/Hint.cs rename to src/Orchestra.Core/Models/Hint.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/Interfaces/ICommandInfo.cs b/src/Orchestra.Core/Models/Interfaces/ICommandInfo.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/Interfaces/ICommandInfo.cs rename to src/Orchestra.Core/Models/Interfaces/ICommandInfo.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/Interfaces/IHint.cs b/src/Orchestra.Core/Models/Interfaces/IHint.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/Interfaces/IHint.cs rename to src/Orchestra.Core/Models/Interfaces/IHint.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/KeyboardMapping.cs b/src/Orchestra.Core/Models/KeyboardMapping.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/KeyboardMapping.cs rename to src/Orchestra.Core/Models/KeyboardMapping.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/KeyboardMappings.cs b/src/Orchestra.Core/Models/KeyboardMappings.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/KeyboardMappings.cs rename to src/Orchestra.Core/Models/KeyboardMappings.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/RecentlyUsedItem.cs b/src/Orchestra.Core/Models/RecentlyUsedItem.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/RecentlyUsedItem.cs rename to src/Orchestra.Core/Models/RecentlyUsedItem.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/RecentlyUsedItems.cs b/src/Orchestra.Core/Models/RecentlyUsedItems.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/RecentlyUsedItems.cs rename to src/Orchestra.Core/Models/RecentlyUsedItems.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/UriInfo.cs b/src/Orchestra.Core/Models/UriInfo.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Models/UriInfo.cs rename to src/Orchestra.Core/Models/UriInfo.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ModuleInitializer.cs b/src/Orchestra.Core/ModuleInitializer.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/ModuleInitializer.cs rename to src/Orchestra.Core/ModuleInitializer.cs diff --git a/src/Orchestra.Core/Orchestra.Core.csproj b/src/Orchestra.Core/Orchestra.Core.csproj new file mode 100644 index 000000000..039005031 --- /dev/null +++ b/src/Orchestra.Core/Orchestra.Core.csproj @@ -0,0 +1,55 @@ + + + net46;net47 + Orchestra.Core + Orchestra + en-US + Orchestra.Core + 1.0.0-alpha0001 + Orchestra core library. + orc;orchestra;wpf;xaml + + + + + + + + + + + + + + + + + + + + + + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + + + + + + + \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/FodyWeavers.xml b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/FodyWeavers.xml deleted file mode 100644 index 501cf31ee..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/FodyWeavers.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - DotNetZip - Orc.SystemInfo - - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/ModuleInitializer.cs b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/Orchestra.Core.NET45.csproj b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/Orchestra.Core.NET45.csproj deleted file mode 100644 index 66bf858a5..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/Orchestra.Core.NET45.csproj +++ /dev/null @@ -1,185 +0,0 @@ - - - - - Debug - AnyCPU - {E004866F-01A2-467D-8C77-5216EB9CA71E} - library - Properties - Orchestra - Orchestra.Core - v4.5 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - - true - full - false - ..\..\..\..\output\debug\NET45\Orchestra.Core\ - TRACE;DEBUG;NET;NET45 - prompt - 4 - 1591;1998 - true - ..\..\..\..\output\debug\NET45\Orchestra.Core\Orchestra.Core.XML - - - pdbonly - true - ..\..\..\..\output\release\NET45\Orchestra.Core\ - TRACE;NET;NET45 - prompt - 4 - 1591;1998 - true - ..\..\..\..\output\release\NET45\Orchestra.Core\Orchestra.Core.XML - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net45\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\Catel.MVVM.dll - - - ..\..\..\..\lib\Costura.Fody.1.6.2\lib\dotnet\Costura.dll - False - - - ..\..\..\..\lib\DotNetZip.1.10.1\lib\net20\DotNetZip.dll - - - ..\..\..\..\lib\MethodTimer.Fody.2.0.2\lib\netstandard1.0\MethodTimer.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\netstandard1.0\ModuleInit.dll - - - ..\..\..\..\lib\Obsolete.Fody.4.3.7\lib\netstandard1.0\Obsolete.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net45\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net45\Orc.FileSystem.dll - - - ..\..\..\..\lib\Orc.SystemInfo.2.0.0\lib\net45\Orc.SystemInfo.dll - - - - - - - - - - - ..\..\..\..\lib\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll - - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net45\System.Windows.Interactivity.dll - True - - - - - - - - 4.0 - - - - - - - - - - - - - - - Resources\Images\Folder.png - - - Resources\Images\Pinned.png - - - Resources\Images\Unpinned.png - - - - - Properties\Resources.de.resx - - - Properties\Resources.es.resx - - - Properties\Resources.fr.resx - - - Properties\Resources.nl.resx - - - Properties\Resources.resx - ResXFileCodeGenerator - Resources.NET45.Designer.cs - - - Properties\Resources.ru.resx - - - - - Properties\Resources.NET45.Designer.cs - True - True - Resources.resx - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/packages.config b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/packages.config deleted file mode 100644 index afee13520..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET45/packages.config +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/FodyWeavers.xml b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/FodyWeavers.xml deleted file mode 100644 index 501cf31ee..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/FodyWeavers.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - DotNetZip - Orc.SystemInfo - - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/ModuleInitializer.cs b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/Orchestra.Core.NET46.csproj b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/Orchestra.Core.NET46.csproj deleted file mode 100644 index 15c6a9e5c..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/Orchestra.Core.NET46.csproj +++ /dev/null @@ -1,169 +0,0 @@ - - - - - Debug - AnyCPU - {49FCBE71-A14F-4F99-BFCE-8065554C6274} - Library - Properties - Orchestra - Orchestra.Core - v4.6 - 512 - - - - - true - full - false - ..\..\..\..\output\debug\NET46\Orchestra.Core\ - TRACE;DEBUG;NET;NET46 - prompt - 4 - true - 1591;1998 - ..\..\..\..\output\debug\NET46\Orchestra.Core\Orchestra.Core.XML - - - pdbonly - true - ..\..\..\..\output\release\NET46\Orchestra.Core\ - TRACE;NET;NET46 - prompt - 4 - true - 1591;1998 - ..\..\..\..\output\release\NET46\Orchestra.Core\Orchestra.Core.XML - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net46\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\Catel.MVVM.dll - - - ..\..\..\..\lib\Costura.Fody.1.6.2\lib\dotnet\Costura.dll - False - - - ..\..\..\..\lib\DotNetZip.1.10.1\lib\net20\DotNetZip.dll - - - ..\..\..\..\lib\MethodTimer.Fody.2.0.2\lib\net452\MethodTimer.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Obsolete.Fody.4.3.7\lib\net452\Obsolete.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net46\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - ..\..\..\..\lib\Orc.SystemInfo.2.0.0\lib\net46\Orc.SystemInfo.dll - - - - - - - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net46\System.Windows.Interactivity.dll - True - - - - - - - - - - - - - - - - - Properties\Resources.NET46.Designer.cs - Resources.resx - True - True - - - - - - Resources\Images\Folder.png - - - Resources\Images\Pinned.png - - - Resources\Images\Unpinned.png - - - - - Properties\Resources.de.resx - - - Properties\Resources.es.resx - - - Properties\Resources.fr.resx - - - Properties\Resources.nl.resx - - - Properties\Resources.resx - ResXFileCodeGenerator - Resources.NET46.Designer.cs - - - Properties\Resources.ru.resx - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/packages.config b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/packages.config deleted file mode 100644 index 5e7548b71..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET46/packages.config +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/FodyWeavers.xml b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/FodyWeavers.xml deleted file mode 100644 index 501cf31ee..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/FodyWeavers.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - DotNetZip - Orc.SystemInfo - - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/ModuleInitializer.cs b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/ModuleInitializer.cs deleted file mode 100644 index d1f473abd..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/ModuleInitializer.cs +++ /dev/null @@ -1 +0,0 @@ -// Empty by design so it will never be overwritten by an update \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/Orchestra.Core.NET47.csproj b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/Orchestra.Core.NET47.csproj deleted file mode 100644 index 5e09bf4c3..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/Orchestra.Core.NET47.csproj +++ /dev/null @@ -1,175 +0,0 @@ - - - - - Debug - AnyCPU - {805E1F16-7A10-42A2-82BA-5012412144BB} - Library - Properties - Orchestra - Orchestra.Core - v4.7 - 512 - - - - - - true - full - false - ..\..\..\..\output\debug\NET47\Orchestra.Core\ - TRACE;DEBUG;NET;NET47 - prompt - 4 - ..\..\..\..\output\debug\NET47\Orchestra.Core\Orchestra.Core.XML - true - 1591;1998 - false - - - pdbonly - true - ..\..\..\..\output\release\NET47\Orchestra.Core\ - TRACE;NET;NET47 - prompt - 4 - true - ..\..\..\..\output\release\NET47\Orchestra.Core\Orchestra.Core.XML - 1591;1998 - false - - - - ..\..\..\..\lib\Catel.Core.5.3.0\lib\net47\Catel.Core.dll - - - ..\..\..\..\lib\Catel.Fody.2.20.0\lib\netstandard1.0\Catel.Fody.Attributes.dll - - - ..\..\..\..\lib\Catel.MVVM.5.3.0\lib\net47\Catel.MVVM.dll - - - ..\..\..\..\lib\Costura.Fody.1.6.2\lib\dotnet\Costura.dll - False - - - ..\..\..\..\lib\DotNetZip.1.10.1\lib\net20\DotNetZip.dll - - - ..\..\..\..\lib\MethodTimer.Fody.2.0.2\lib\net452\MethodTimer.dll - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\Microsoft.Expression.Interactions.dll - True - - - ..\..\..\..\lib\ModuleInit.Fody.1.7.1\lib\net452\ModuleInit.dll - - - ..\..\..\..\lib\Obsolete.Fody.4.3.7\lib\net452\Obsolete.dll - - - ..\..\..\..\lib\Orc.Controls.2.0.8\lib\net47\Orc.Controls.dll - - - ..\..\..\..\lib\Orc.FileSystem.2.0.0\lib\net46\Orc.FileSystem.dll - - - ..\..\..\..\lib\Orc.SystemInfo.2.0.0\lib\net46\Orc.SystemInfo.dll - - - - - - - - - - - - ..\..\..\..\lib\Expression.Blend.Sdk.WPF.1.0.1\lib\net45\System.Windows.Interactivity.dll - True - - - - - - - - - - - - - - - - Resources\Images\Folder.png - - - Resources\Images\Pinned.png - - - Resources\Images\Unpinned.png - - - - - - Properties\Resources.de.resx - - - Properties\Resources.es.resx - - - Properties\Resources.fr.resx - - - Properties\Resources.nl.resx - - - Properties\Resources.resx - ResXFileCodeGenerator - Resources.NET47.Designer.cs - - - Properties\Resources.ru.resx - - - - - Properties\Resources.NET47.Designer.cs - True - True - Resources.resx - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/app.config b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/app.config deleted file mode 100644 index d7b0a2840..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/app.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/packages.config b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/packages.config deleted file mode 100644 index abada2cb7..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.NET47/packages.config +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Orchestra.Core.Shared.projitems b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Orchestra.Core.Shared.projitems deleted file mode 100644 index bd2bac5f7..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Orchestra.Core.Shared.projitems +++ /dev/null @@ -1,293 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - true - bf3abc91-f3f1-4c8a-a418-1b845724cc7f - - - Orchestra - - - - - - - - - - - - - - - - - - - BusyIndicator.xaml - - - FluidProgressBar.xaml - - - KeyboardMappingControl.xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Code - - - - - Code - - - - - AboutWindow.xaml - - - CrashWarningWindow.xaml - Code - - - KeyboardMappingsCustomizationView.xaml - - - KeyboardMappingsCustomizationWindow.xaml - - - KeyboardMappingsOverviewView.xaml - - - KeyboardMappingsOverviewWindow.xaml - - - MessageBoxWindow.xaml - Code - - - SplashScreen.xaml - - - SystemInfoWindow.xaml - - - - - - - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - - - - \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Orchestra.Core.Shared.shproj b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Orchestra.Core.Shared.shproj deleted file mode 100644 index 288002ac4..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Orchestra.Core.Shared.shproj +++ /dev/null @@ -1,12 +0,0 @@ - - - - bf3abc91-f3f1-4c8a-a418-1b845724cc7f - - - - - - - - diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/AssemblyInfo.cs b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/AssemblyInfo.cs deleted file mode 100644 index c4b234c0e..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,29 +0,0 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2008 - 2014 WildGums. All rights reserved. -// -// -------------------------------------------------------------------------------------------------------------------- - - -// All other assembly info is defined in SharedAssembly.cs -using System.Reflection; -using System.Runtime.InteropServices; -using System.Windows.Markup; - -[assembly: AssemblyTitle("Orchestra.Core")] -[assembly: AssemblyProduct("Orchestra.Core")] -[assembly: AssemblyDescription("Orchestra core library")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. - -[assembly: ComVisible(false)] - -[assembly: XmlnsPrefix(Orchestra.OrchestraEnvironment.OrchestraUrl, "orchestra")] -[assembly: XmlnsDefinition(Orchestra.OrchestraEnvironment.OrchestraUrl, "Orchestra.Behaviors")] -[assembly: XmlnsDefinition(Orchestra.OrchestraEnvironment.OrchestraUrl, "Orchestra.Converters")] -[assembly: XmlnsDefinition(Orchestra.OrchestraEnvironment.OrchestraUrl, "Orchestra.Controls")] -[assembly: XmlnsDefinition(Orchestra.OrchestraEnvironment.OrchestraUrl, "Orchestra.Markup")] -[assembly: XmlnsDefinition(Orchestra.OrchestraEnvironment.OrchestraUrl, "Orchestra.Views")] -[assembly: XmlnsDefinition(Orchestra.OrchestraEnvironment.OrchestraUrl, "Orchestra.Windows")] \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET40.Designer.cs b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET40.Designer.cs deleted file mode 100644 index 6cc7cf439..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET40.Designer.cs +++ /dev/null @@ -1,414 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Orchestra.Properties { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Orchestra.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// Looks up a localized string similar to All rights reserved. - /// - internal static string Orchestra_AllRightsReserved { - get { - return ResourceManager.GetString("Orchestra_AllRightsReserved", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Assign. - /// - internal static string Orchestra_Assign { - get { - return ResourceManager.GetString("Orchestra_Assign", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to assign the input gesture to '{0}'. It will be removed from the other commands.. - /// - internal static string Orchestra_AssignInputGestureAreYouSure { - get { - return ResourceManager.GetString("Orchestra_AssignInputGestureAreYouSure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The input gesture '{0}' is currently being used by the following commands:. - /// - internal static string Orchestra_AssignInputGestureUsedByFollowCommands { - get { - return ResourceManager.GetString("Orchestra_AssignInputGestureUsedByFollowCommands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backup and Reset. - /// - internal static string Orchestra_BackupAndReset { - get { - return ResourceManager.GetString("Orchestra_BackupAndReset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backup has been succesfully created.. - /// - internal static string Orchestra_BackupCreated { - get { - return ResourceManager.GetString("Orchestra_BackupCreated", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Built on {0}. - /// - internal static string Orchestra_BuiltOn { - get { - return ResourceManager.GetString("Orchestra_BuiltOn", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Close. - /// - internal static string Orchestra_Close { - get { - return ResourceManager.GetString("Orchestra_Close", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Command. - /// - internal static string Orchestra_Command { - get { - return ResourceManager.GetString("Orchestra_Command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Continue. - /// - internal static string Orchestra_Continue { - get { - return ResourceManager.GetString("Orchestra_Continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Copy. - /// - internal static string Orchestra_Copy { - get { - return ResourceManager.GetString("Orchestra_Copy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Customize. - /// - internal static string Orchestra_Customize { - get { - return ResourceManager.GetString("Orchestra_Customize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Debug logging is enabled for this application instance. - /// - internal static string Orchestra_DebugLoggingIsEnabled { - get { - return ResourceManager.GetString("Orchestra_DebugLoggingIsEnabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User data settings have been successfully deleted.. - /// - internal static string Orchestra_DeletedUserDataSettings { - get { - return ResourceManager.GetString("Orchestra_DeletedUserDataSettings", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enable detailed logging. - /// - internal static string Orchestra_EnableDetailedLogging { - get { - return ResourceManager.GetString("Orchestra_EnableDetailedLogging", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enable logging. - /// - internal static string Orchestra_EnableLogging { - get { - return ResourceManager.GetString("Orchestra_EnableLogging", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Failed to created a backup. To prevent data loss, the application will now exit and not delete any files. Please contact support so they can guide you through the process.. - /// - internal static string Orchestra_FailedToCreateBackup { - get { - return ResourceManager.GetString("Orchestra_FailedToCreateBackup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Input gesture. - /// - internal static string Orchestra_InputGesture { - get { - return ResourceManager.GetString("Orchestra_InputGesture", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Keyboard shortcuts. - /// - internal static string Orchestra_KeyboardShortcuts { - get { - return ResourceManager.GetString("Orchestra_KeyboardShortcuts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No log listener available that can be opened. Please contact support.. - /// - internal static string Orchestra_NoLogListenerAvailable { - get { - return ResourceManager.GetString("Orchestra_NoLogListenerAvailable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to It seems that the application failed to start correctly the last time it was started.. - /// - internal static string Orchestra_NotStartedCorrectly_01 { - get { - return ResourceManager.GetString("Orchestra_NotStartedCorrectly_01", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to If this happens again, try to reset the user data settings. The left button will allow you to reset (and optionally backup) your settings.. - /// - internal static string Orchestra_NotStartedCorrectly_02 { - get { - return ResourceManager.GetString("Orchestra_NotStartedCorrectly_02", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to When ready, click continue to start the application.. - /// - internal static string Orchestra_NotStartedCorrectly_03 { - get { - return ResourceManager.GetString("Orchestra_NotStartedCorrectly_03", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Press shortcut keys:. - /// - internal static string Orchestra_PressShortcutKeys { - get { - return ResourceManager.GetString("Orchestra_PressShortcutKeys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Print. - /// - internal static string Orchestra_Print { - get { - return ResourceManager.GetString("Orchestra_Print", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Produced by {0}. - /// - internal static string Orchestra_ProducedBy { - get { - return ResourceManager.GetString("Orchestra_ProducedBy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Released on. - /// - internal static string Orchestra_ReleasedOn { - get { - return ResourceManager.GetString("Orchestra_ReleasedOn", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remove. - /// - internal static string Orchestra_Remove { - get { - return ResourceManager.GetString("Orchestra_Remove", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Replace input gesture?. - /// - internal static string Orchestra_ReplaceInputGesture { - get { - return ResourceManager.GetString("Orchestra_ReplaceInputGesture", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reset. - /// - internal static string Orchestra_Reset { - get { - return ResourceManager.GetString("Orchestra_Reset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resetting shortcuts will delete all your current shortcuts. This action cannot be undone. Are you sure you want to reset the shortcuts?. - /// - internal static string Orchestra_ResetKeyboardShortcutsAreYouSure { - get { - return ResourceManager.GetString("Orchestra_ResetKeyboardShortcutsAreYouSure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrieving system information.... - /// - internal static string Orchestra_RetrievingSystemInfo { - get { - return ResourceManager.GetString("Orchestra_RetrievingSystemInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Shortcut for selected command:. - /// - internal static string Orchestra_ShortcutForSelectedCommand { - get { - return ResourceManager.GetString("Orchestra_ShortcutForSelectedCommand", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Keyboard shortcuts for {0}. - /// - internal static string Orchestra_ShortcutsForApplication { - get { - return ResourceManager.GetString("Orchestra_ShortcutsForApplication", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show commands containing:. - /// - internal static string Orchestra_ShowCommandsContaining { - get { - return ResourceManager.GetString("Orchestra_ShowCommandsContaining", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show log.... - /// - internal static string Orchestra_ShowLog { - get { - return ResourceManager.GetString("Orchestra_ShowLog", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show system info. - /// - internal static string Orchestra_ShowSystemInfo { - get { - return ResourceManager.GetString("Orchestra_ShowSystemInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to System information. - /// - internal static string Orchestra_SystemInfo { - get { - return ResourceManager.GetString("Orchestra_SystemInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User data settings. - /// - internal static string Orchestra_UserDataSettings { - get { - return ResourceManager.GetString("Orchestra_UserDataSettings", resourceCulture); - } - } - } -} diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET45.Designer.cs b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET45.Designer.cs deleted file mode 100644 index 6cc7cf439..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET45.Designer.cs +++ /dev/null @@ -1,414 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Orchestra.Properties { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Orchestra.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// Looks up a localized string similar to All rights reserved. - /// - internal static string Orchestra_AllRightsReserved { - get { - return ResourceManager.GetString("Orchestra_AllRightsReserved", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Assign. - /// - internal static string Orchestra_Assign { - get { - return ResourceManager.GetString("Orchestra_Assign", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to assign the input gesture to '{0}'. It will be removed from the other commands.. - /// - internal static string Orchestra_AssignInputGestureAreYouSure { - get { - return ResourceManager.GetString("Orchestra_AssignInputGestureAreYouSure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The input gesture '{0}' is currently being used by the following commands:. - /// - internal static string Orchestra_AssignInputGestureUsedByFollowCommands { - get { - return ResourceManager.GetString("Orchestra_AssignInputGestureUsedByFollowCommands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backup and Reset. - /// - internal static string Orchestra_BackupAndReset { - get { - return ResourceManager.GetString("Orchestra_BackupAndReset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backup has been succesfully created.. - /// - internal static string Orchestra_BackupCreated { - get { - return ResourceManager.GetString("Orchestra_BackupCreated", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Built on {0}. - /// - internal static string Orchestra_BuiltOn { - get { - return ResourceManager.GetString("Orchestra_BuiltOn", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Close. - /// - internal static string Orchestra_Close { - get { - return ResourceManager.GetString("Orchestra_Close", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Command. - /// - internal static string Orchestra_Command { - get { - return ResourceManager.GetString("Orchestra_Command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Continue. - /// - internal static string Orchestra_Continue { - get { - return ResourceManager.GetString("Orchestra_Continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Copy. - /// - internal static string Orchestra_Copy { - get { - return ResourceManager.GetString("Orchestra_Copy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Customize. - /// - internal static string Orchestra_Customize { - get { - return ResourceManager.GetString("Orchestra_Customize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Debug logging is enabled for this application instance. - /// - internal static string Orchestra_DebugLoggingIsEnabled { - get { - return ResourceManager.GetString("Orchestra_DebugLoggingIsEnabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User data settings have been successfully deleted.. - /// - internal static string Orchestra_DeletedUserDataSettings { - get { - return ResourceManager.GetString("Orchestra_DeletedUserDataSettings", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enable detailed logging. - /// - internal static string Orchestra_EnableDetailedLogging { - get { - return ResourceManager.GetString("Orchestra_EnableDetailedLogging", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enable logging. - /// - internal static string Orchestra_EnableLogging { - get { - return ResourceManager.GetString("Orchestra_EnableLogging", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Failed to created a backup. To prevent data loss, the application will now exit and not delete any files. Please contact support so they can guide you through the process.. - /// - internal static string Orchestra_FailedToCreateBackup { - get { - return ResourceManager.GetString("Orchestra_FailedToCreateBackup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Input gesture. - /// - internal static string Orchestra_InputGesture { - get { - return ResourceManager.GetString("Orchestra_InputGesture", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Keyboard shortcuts. - /// - internal static string Orchestra_KeyboardShortcuts { - get { - return ResourceManager.GetString("Orchestra_KeyboardShortcuts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No log listener available that can be opened. Please contact support.. - /// - internal static string Orchestra_NoLogListenerAvailable { - get { - return ResourceManager.GetString("Orchestra_NoLogListenerAvailable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to It seems that the application failed to start correctly the last time it was started.. - /// - internal static string Orchestra_NotStartedCorrectly_01 { - get { - return ResourceManager.GetString("Orchestra_NotStartedCorrectly_01", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to If this happens again, try to reset the user data settings. The left button will allow you to reset (and optionally backup) your settings.. - /// - internal static string Orchestra_NotStartedCorrectly_02 { - get { - return ResourceManager.GetString("Orchestra_NotStartedCorrectly_02", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to When ready, click continue to start the application.. - /// - internal static string Orchestra_NotStartedCorrectly_03 { - get { - return ResourceManager.GetString("Orchestra_NotStartedCorrectly_03", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Press shortcut keys:. - /// - internal static string Orchestra_PressShortcutKeys { - get { - return ResourceManager.GetString("Orchestra_PressShortcutKeys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Print. - /// - internal static string Orchestra_Print { - get { - return ResourceManager.GetString("Orchestra_Print", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Produced by {0}. - /// - internal static string Orchestra_ProducedBy { - get { - return ResourceManager.GetString("Orchestra_ProducedBy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Released on. - /// - internal static string Orchestra_ReleasedOn { - get { - return ResourceManager.GetString("Orchestra_ReleasedOn", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remove. - /// - internal static string Orchestra_Remove { - get { - return ResourceManager.GetString("Orchestra_Remove", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Replace input gesture?. - /// - internal static string Orchestra_ReplaceInputGesture { - get { - return ResourceManager.GetString("Orchestra_ReplaceInputGesture", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reset. - /// - internal static string Orchestra_Reset { - get { - return ResourceManager.GetString("Orchestra_Reset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resetting shortcuts will delete all your current shortcuts. This action cannot be undone. Are you sure you want to reset the shortcuts?. - /// - internal static string Orchestra_ResetKeyboardShortcutsAreYouSure { - get { - return ResourceManager.GetString("Orchestra_ResetKeyboardShortcutsAreYouSure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrieving system information.... - /// - internal static string Orchestra_RetrievingSystemInfo { - get { - return ResourceManager.GetString("Orchestra_RetrievingSystemInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Shortcut for selected command:. - /// - internal static string Orchestra_ShortcutForSelectedCommand { - get { - return ResourceManager.GetString("Orchestra_ShortcutForSelectedCommand", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Keyboard shortcuts for {0}. - /// - internal static string Orchestra_ShortcutsForApplication { - get { - return ResourceManager.GetString("Orchestra_ShortcutsForApplication", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show commands containing:. - /// - internal static string Orchestra_ShowCommandsContaining { - get { - return ResourceManager.GetString("Orchestra_ShowCommandsContaining", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show log.... - /// - internal static string Orchestra_ShowLog { - get { - return ResourceManager.GetString("Orchestra_ShowLog", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show system info. - /// - internal static string Orchestra_ShowSystemInfo { - get { - return ResourceManager.GetString("Orchestra_ShowSystemInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to System information. - /// - internal static string Orchestra_SystemInfo { - get { - return ResourceManager.GetString("Orchestra_SystemInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User data settings. - /// - internal static string Orchestra_UserDataSettings { - get { - return ResourceManager.GetString("Orchestra_UserDataSettings", resourceCulture); - } - } - } -} diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET47.Designer.cs b/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET47.Designer.cs deleted file mode 100644 index 6cc7cf439..000000000 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET47.Designer.cs +++ /dev/null @@ -1,414 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Orchestra.Properties { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Orchestra.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// Looks up a localized string similar to All rights reserved. - /// - internal static string Orchestra_AllRightsReserved { - get { - return ResourceManager.GetString("Orchestra_AllRightsReserved", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Assign. - /// - internal static string Orchestra_Assign { - get { - return ResourceManager.GetString("Orchestra_Assign", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to assign the input gesture to '{0}'. It will be removed from the other commands.. - /// - internal static string Orchestra_AssignInputGestureAreYouSure { - get { - return ResourceManager.GetString("Orchestra_AssignInputGestureAreYouSure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The input gesture '{0}' is currently being used by the following commands:. - /// - internal static string Orchestra_AssignInputGestureUsedByFollowCommands { - get { - return ResourceManager.GetString("Orchestra_AssignInputGestureUsedByFollowCommands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backup and Reset. - /// - internal static string Orchestra_BackupAndReset { - get { - return ResourceManager.GetString("Orchestra_BackupAndReset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backup has been succesfully created.. - /// - internal static string Orchestra_BackupCreated { - get { - return ResourceManager.GetString("Orchestra_BackupCreated", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Built on {0}. - /// - internal static string Orchestra_BuiltOn { - get { - return ResourceManager.GetString("Orchestra_BuiltOn", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Close. - /// - internal static string Orchestra_Close { - get { - return ResourceManager.GetString("Orchestra_Close", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Command. - /// - internal static string Orchestra_Command { - get { - return ResourceManager.GetString("Orchestra_Command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Continue. - /// - internal static string Orchestra_Continue { - get { - return ResourceManager.GetString("Orchestra_Continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Copy. - /// - internal static string Orchestra_Copy { - get { - return ResourceManager.GetString("Orchestra_Copy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Customize. - /// - internal static string Orchestra_Customize { - get { - return ResourceManager.GetString("Orchestra_Customize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Debug logging is enabled for this application instance. - /// - internal static string Orchestra_DebugLoggingIsEnabled { - get { - return ResourceManager.GetString("Orchestra_DebugLoggingIsEnabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User data settings have been successfully deleted.. - /// - internal static string Orchestra_DeletedUserDataSettings { - get { - return ResourceManager.GetString("Orchestra_DeletedUserDataSettings", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enable detailed logging. - /// - internal static string Orchestra_EnableDetailedLogging { - get { - return ResourceManager.GetString("Orchestra_EnableDetailedLogging", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enable logging. - /// - internal static string Orchestra_EnableLogging { - get { - return ResourceManager.GetString("Orchestra_EnableLogging", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Failed to created a backup. To prevent data loss, the application will now exit and not delete any files. Please contact support so they can guide you through the process.. - /// - internal static string Orchestra_FailedToCreateBackup { - get { - return ResourceManager.GetString("Orchestra_FailedToCreateBackup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Input gesture. - /// - internal static string Orchestra_InputGesture { - get { - return ResourceManager.GetString("Orchestra_InputGesture", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Keyboard shortcuts. - /// - internal static string Orchestra_KeyboardShortcuts { - get { - return ResourceManager.GetString("Orchestra_KeyboardShortcuts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No log listener available that can be opened. Please contact support.. - /// - internal static string Orchestra_NoLogListenerAvailable { - get { - return ResourceManager.GetString("Orchestra_NoLogListenerAvailable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to It seems that the application failed to start correctly the last time it was started.. - /// - internal static string Orchestra_NotStartedCorrectly_01 { - get { - return ResourceManager.GetString("Orchestra_NotStartedCorrectly_01", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to If this happens again, try to reset the user data settings. The left button will allow you to reset (and optionally backup) your settings.. - /// - internal static string Orchestra_NotStartedCorrectly_02 { - get { - return ResourceManager.GetString("Orchestra_NotStartedCorrectly_02", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to When ready, click continue to start the application.. - /// - internal static string Orchestra_NotStartedCorrectly_03 { - get { - return ResourceManager.GetString("Orchestra_NotStartedCorrectly_03", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Press shortcut keys:. - /// - internal static string Orchestra_PressShortcutKeys { - get { - return ResourceManager.GetString("Orchestra_PressShortcutKeys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Print. - /// - internal static string Orchestra_Print { - get { - return ResourceManager.GetString("Orchestra_Print", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Produced by {0}. - /// - internal static string Orchestra_ProducedBy { - get { - return ResourceManager.GetString("Orchestra_ProducedBy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Released on. - /// - internal static string Orchestra_ReleasedOn { - get { - return ResourceManager.GetString("Orchestra_ReleasedOn", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remove. - /// - internal static string Orchestra_Remove { - get { - return ResourceManager.GetString("Orchestra_Remove", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Replace input gesture?. - /// - internal static string Orchestra_ReplaceInputGesture { - get { - return ResourceManager.GetString("Orchestra_ReplaceInputGesture", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reset. - /// - internal static string Orchestra_Reset { - get { - return ResourceManager.GetString("Orchestra_Reset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resetting shortcuts will delete all your current shortcuts. This action cannot be undone. Are you sure you want to reset the shortcuts?. - /// - internal static string Orchestra_ResetKeyboardShortcutsAreYouSure { - get { - return ResourceManager.GetString("Orchestra_ResetKeyboardShortcutsAreYouSure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrieving system information.... - /// - internal static string Orchestra_RetrievingSystemInfo { - get { - return ResourceManager.GetString("Orchestra_RetrievingSystemInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Shortcut for selected command:. - /// - internal static string Orchestra_ShortcutForSelectedCommand { - get { - return ResourceManager.GetString("Orchestra_ShortcutForSelectedCommand", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Keyboard shortcuts for {0}. - /// - internal static string Orchestra_ShortcutsForApplication { - get { - return ResourceManager.GetString("Orchestra_ShortcutsForApplication", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show commands containing:. - /// - internal static string Orchestra_ShowCommandsContaining { - get { - return ResourceManager.GetString("Orchestra_ShowCommandsContaining", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show log.... - /// - internal static string Orchestra_ShowLog { - get { - return ResourceManager.GetString("Orchestra_ShowLog", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show system info. - /// - internal static string Orchestra_ShowSystemInfo { - get { - return ResourceManager.GetString("Orchestra_ShowSystemInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to System information. - /// - internal static string Orchestra_SystemInfo { - get { - return ResourceManager.GetString("Orchestra_SystemInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User data settings. - /// - internal static string Orchestra_UserDataSettings { - get { - return ResourceManager.GetString("Orchestra_UserDataSettings", resourceCulture); - } - } - } -} diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/OrchestraEnvironment.cs b/src/Orchestra.Core/OrchestraEnvironment.cs similarity index 88% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/OrchestraEnvironment.cs rename to src/Orchestra.Core/OrchestraEnvironment.cs index c31017849..37bc2c323 100644 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/OrchestraEnvironment.cs +++ b/src/Orchestra.Core/OrchestraEnvironment.cs @@ -11,8 +11,6 @@ namespace Orchestra public static class OrchestraEnvironment { - public const string OrchestraUrl = "https://github.com/orcomp/orchestra"; - #region Constants public static readonly SolidColorBrush DefaultAccentColorBrush = new SolidColorBrush(Colors.Orange); #endregion diff --git a/src/Orchestra.Core/Properties/AssemblyInfo.cs b/src/Orchestra.Core/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..33f697580 --- /dev/null +++ b/src/Orchestra.Core/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright (c) 2008 - 2018 WildGums. All rights reserved. +// +// -------------------------------------------------------------------------------------------------------------------- + + +using System.Reflection; +using System.Resources; +using System.Windows; +using System.Windows.Markup; + +// All other assembly info is defined in SolutionAssemblyInfo.cs + +[assembly: AssemblyTitle("Orchestra.Core")] +[assembly: AssemblyProduct("Orchestra.Core")] +[assembly: AssemblyDescription("Orchestra.Core library")] +[assembly: NeutralResourcesLanguage("en-US")] + +[assembly: XmlnsPrefix("http://schemas.wildgums.com/orchestra", "orchestra")] +[assembly: XmlnsDefinition("http://schemas.wildgums.com/orchestra", "Orchestra.Behaviors")] +[assembly: XmlnsDefinition("http://schemas.wildgums.com/orchestra", "Orchestra.Converters")] +[assembly: XmlnsDefinition("http://schemas.wildgums.com/orchestra", "Orchestra.Controls")] +[assembly: XmlnsDefinition("http://schemas.wildgums.com/orchestra", "Orchestra.Markup")] +[assembly: XmlnsDefinition("http://schemas.wildgums.com/orchestra", "Orchestra.Views")] +[assembly: XmlnsDefinition("http://schemas.wildgums.com/orchestra", "Orchestra.Windows")] + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) + )] \ No newline at end of file diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET46.Designer.cs b/src/Orchestra.Core/Properties/Resources.Designer.cs similarity index 99% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET46.Designer.cs rename to src/Orchestra.Core/Properties/Resources.Designer.cs index 6cc7cf439..559b11222 100644 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.NET46.Designer.cs +++ b/src/Orchestra.Core/Properties/Resources.Designer.cs @@ -10,7 +10,7 @@ namespace Orchestra.Properties { using System; - + using Catel.Reflection; /// /// A strongly-typed resource class, for looking up localized strings, etc. @@ -19,7 +19,7 @@ namespace Orchestra.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -39,7 +39,7 @@ internal class Resources { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Orchestra.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Orchestra.Properties.Resources", typeof(Resources).GetAssemblyEx()); resourceMan = temp; } return resourceMan; diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.de.resx b/src/Orchestra.Core/Properties/Resources.de.resx similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.de.resx rename to src/Orchestra.Core/Properties/Resources.de.resx diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.es.resx b/src/Orchestra.Core/Properties/Resources.es.resx similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.es.resx rename to src/Orchestra.Core/Properties/Resources.es.resx diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.fr.resx b/src/Orchestra.Core/Properties/Resources.fr.resx similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.fr.resx rename to src/Orchestra.Core/Properties/Resources.fr.resx diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.nl.resx b/src/Orchestra.Core/Properties/Resources.nl.resx similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.nl.resx rename to src/Orchestra.Core/Properties/Resources.nl.resx diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.resx b/src/Orchestra.Core/Properties/Resources.resx similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.resx rename to src/Orchestra.Core/Properties/Resources.resx diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.ru.resx b/src/Orchestra.Core/Properties/Resources.ru.resx similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Properties/Resources.ru.resx rename to src/Orchestra.Core/Properties/Resources.ru.resx diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Resources/Images/Folder.png b/src/Orchestra.Core/Resources/Images/Folder.png similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Resources/Images/Folder.png rename to src/Orchestra.Core/Resources/Images/Folder.png diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Resources/Images/Pinned.png b/src/Orchestra.Core/Resources/Images/Pinned.png similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Resources/Images/Pinned.png rename to src/Orchestra.Core/Resources/Images/Pinned.png diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Resources/Images/Unpinned.png b/src/Orchestra.Core/Resources/Images/Unpinned.png similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Resources/Images/Unpinned.png rename to src/Orchestra.Core/Resources/Images/Unpinned.png diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AboutInfoService.cs b/src/Orchestra.Core/Services/AboutInfoService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AboutInfoService.cs rename to src/Orchestra.Core/Services/AboutInfoService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AboutService.cs b/src/Orchestra.Core/Services/AboutService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AboutService.cs rename to src/Orchestra.Core/Services/AboutService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AdorneredTooltipsManager.cs b/src/Orchestra.Core/Services/AdorneredTooltipsManager.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AdorneredTooltipsManager.cs rename to src/Orchestra.Core/Services/AdorneredTooltipsManager.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AdorneredTooltipsManagerFactory.cs b/src/Orchestra.Core/Services/AdorneredTooltipsManagerFactory.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AdorneredTooltipsManagerFactory.cs rename to src/Orchestra.Core/Services/AdorneredTooltipsManagerFactory.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AppDataService.cs b/src/Orchestra.Core/Services/AppDataService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/AppDataService.cs rename to src/Orchestra.Core/Services/AppDataService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/ClipboardService.cs b/src/Orchestra.Core/Services/ClipboardService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/ClipboardService.cs rename to src/Orchestra.Core/Services/ClipboardService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/CloseApplicationService.cs b/src/Orchestra.Core/Services/CloseApplicationService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/CloseApplicationService.cs rename to src/Orchestra.Core/Services/CloseApplicationService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/CommandInfoService.cs b/src/Orchestra.Core/Services/CommandInfoService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/CommandInfoService.cs rename to src/Orchestra.Core/Services/CommandInfoService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/EnsureStartupService.cs b/src/Orchestra.Core/Services/EnsureStartupService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/EnsureStartupService.cs rename to src/Orchestra.Core/Services/EnsureStartupService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Extensions/ICommandInfoServiceExtensions.cs b/src/Orchestra.Core/Services/Extensions/ICommandInfoServiceExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Extensions/ICommandInfoServiceExtensions.cs rename to src/Orchestra.Core/Services/Extensions/ICommandInfoServiceExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Extensions/IMessageServiceExtensions.cs b/src/Orchestra.Core/Services/Extensions/IMessageServiceExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Extensions/IMessageServiceExtensions.cs rename to src/Orchestra.Core/Services/Extensions/IMessageServiceExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Extensions/IStatusServiceExtensions.cs b/src/Orchestra.Core/Services/Extensions/IStatusServiceExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Extensions/IStatusServiceExtensions.cs rename to src/Orchestra.Core/Services/Extensions/IStatusServiceExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Extensions/IViewActivationServiceExtensions.cs b/src/Orchestra.Core/Services/Extensions/IViewActivationServiceExtensions.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Extensions/IViewActivationServiceExtensions.cs rename to src/Orchestra.Core/Services/Extensions/IViewActivationServiceExtensions.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/HintsProvider.cs b/src/Orchestra.Core/Services/HintsProvider.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/HintsProvider.cs rename to src/Orchestra.Core/Services/HintsProvider.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAboutInfoService.cs b/src/Orchestra.Core/Services/Interfaces/IAboutInfoService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAboutInfoService.cs rename to src/Orchestra.Core/Services/Interfaces/IAboutInfoService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAboutService.cs b/src/Orchestra.Core/Services/Interfaces/IAboutService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAboutService.cs rename to src/Orchestra.Core/Services/Interfaces/IAboutService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAdorneredTooltipsManager.cs b/src/Orchestra.Core/Services/Interfaces/IAdorneredTooltipsManager.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAdorneredTooltipsManager.cs rename to src/Orchestra.Core/Services/Interfaces/IAdorneredTooltipsManager.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAdorneredTooltipsManagerFactory.cs b/src/Orchestra.Core/Services/Interfaces/IAdorneredTooltipsManagerFactory.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAdorneredTooltipsManagerFactory.cs rename to src/Orchestra.Core/Services/Interfaces/IAdorneredTooltipsManagerFactory.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAppDataService.cs b/src/Orchestra.Core/Services/Interfaces/IAppDataService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IAppDataService.cs rename to src/Orchestra.Core/Services/Interfaces/IAppDataService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IClipboardService.cs b/src/Orchestra.Core/Services/Interfaces/IClipboardService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IClipboardService.cs rename to src/Orchestra.Core/Services/Interfaces/IClipboardService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/ICloseApplicationService.cs b/src/Orchestra.Core/Services/Interfaces/ICloseApplicationService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/ICloseApplicationService.cs rename to src/Orchestra.Core/Services/Interfaces/ICloseApplicationService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/ICommandInfoService.cs b/src/Orchestra.Core/Services/Interfaces/ICommandInfoService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/ICommandInfoService.cs rename to src/Orchestra.Core/Services/Interfaces/ICommandInfoService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IEnsureStartupService.cs b/src/Orchestra.Core/Services/Interfaces/IEnsureStartupService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IEnsureStartupService.cs rename to src/Orchestra.Core/Services/Interfaces/IEnsureStartupService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IHintsProvider.cs b/src/Orchestra.Core/Services/Interfaces/IHintsProvider.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IHintsProvider.cs rename to src/Orchestra.Core/Services/Interfaces/IHintsProvider.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IKeyboardMappingsService.cs b/src/Orchestra.Core/Services/Interfaces/IKeyboardMappingsService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IKeyboardMappingsService.cs rename to src/Orchestra.Core/Services/Interfaces/IKeyboardMappingsService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IRecentlyUsedItemsService.cs b/src/Orchestra.Core/Services/Interfaces/IRecentlyUsedItemsService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IRecentlyUsedItemsService.cs rename to src/Orchestra.Core/Services/Interfaces/IRecentlyUsedItemsService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/ISplashScreenService.cs b/src/Orchestra.Core/Services/Interfaces/ISplashScreenService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/ISplashScreenService.cs rename to src/Orchestra.Core/Services/Interfaces/ISplashScreenService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IStatusFilterService.cs b/src/Orchestra.Core/Services/Interfaces/IStatusFilterService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IStatusFilterService.cs rename to src/Orchestra.Core/Services/Interfaces/IStatusFilterService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IStatusService.cs b/src/Orchestra.Core/Services/Interfaces/IStatusService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IStatusService.cs rename to src/Orchestra.Core/Services/Interfaces/IStatusService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IThemeService.cs b/src/Orchestra.Core/Services/Interfaces/IThemeService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IThemeService.cs rename to src/Orchestra.Core/Services/Interfaces/IThemeService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IViewActivationService.cs b/src/Orchestra.Core/Services/Interfaces/IViewActivationService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/Interfaces/IViewActivationService.cs rename to src/Orchestra.Core/Services/Interfaces/IViewActivationService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/KeyboardMappingsService.cs b/src/Orchestra.Core/Services/KeyboardMappingsService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/KeyboardMappingsService.cs rename to src/Orchestra.Core/Services/KeyboardMappingsService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/MessageService.cs b/src/Orchestra.Core/Services/MessageService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/MessageService.cs rename to src/Orchestra.Core/Services/MessageService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/PleaseWaitService.cs b/src/Orchestra.Core/Services/PleaseWaitService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/PleaseWaitService.cs rename to src/Orchestra.Core/Services/PleaseWaitService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/RecentlyUsedItemsService.cs b/src/Orchestra.Core/Services/RecentlyUsedItemsService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/RecentlyUsedItemsService.cs rename to src/Orchestra.Core/Services/RecentlyUsedItemsService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/SplashScreenService.cs b/src/Orchestra.Core/Services/SplashScreenService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/SplashScreenService.cs rename to src/Orchestra.Core/Services/SplashScreenService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/StatusFilterService.cs b/src/Orchestra.Core/Services/StatusFilterService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/StatusFilterService.cs rename to src/Orchestra.Core/Services/StatusFilterService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/StatusService.cs b/src/Orchestra.Core/Services/StatusService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/StatusService.cs rename to src/Orchestra.Core/Services/StatusService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/ThemeService.cs b/src/Orchestra.Core/Services/ThemeService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/ThemeService.cs rename to src/Orchestra.Core/Services/ThemeService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/ViewActivationService.cs b/src/Orchestra.Core/Services/ViewActivationService.cs similarity index 100% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Services/ViewActivationService.cs rename to src/Orchestra.Core/Services/ViewActivationService.cs diff --git a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Themes/Controls.explicit.xaml b/src/Orchestra.Core/Themes/Controls.explicit.xaml similarity index 95% rename from src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Themes/Controls.explicit.xaml rename to src/Orchestra.Core/Themes/Controls.explicit.xaml index 7bb7de957..450c46a10 100644 --- a/src/Orchestra.Core/Orchestra.Core/Orchestra.Core.Shared/Themes/Controls.explicit.xaml +++ b/src/Orchestra.Core/Themes/Controls.explicit.xaml @@ -1,6 +1,6 @@  + xmlns:orccontrols="http://schemas.wildgums.com/orc/controls"> -