-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f83c563
commit 6d5edfa
Showing
154 changed files
with
5,428 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- '!main' | ||
|
||
jobs: | ||
windows: | ||
name: windows-2022 | ||
runs-on: windows-2022 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run Nuke build | ||
run: ./.nuke/build.cmd Compile PublishGitHub --GitHubToken ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#IDE folders | ||
*.idea/ | ||
*.vs/ | ||
*.vscode/ | ||
|
||
#Project-specific folders | ||
*obj/ | ||
*bin/ | ||
*temp/ | ||
|
||
#Deprecated Nuget folder | ||
/packages/ | ||
|
||
#Nuke output folder | ||
/output/ | ||
|
||
#Project-specific files | ||
*/build.schema.json | ||
|
||
#User-specific files | ||
*.user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
powershell -ExecutionPolicy ByPass -NoProfile -File "%~dp0Build.ps1" %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
[CmdletBinding()] | ||
Param( | ||
[Parameter(Position=0,Mandatory=$false,ValueFromRemainingArguments=$true)] | ||
[string[]]$BuildArguments | ||
) | ||
|
||
Write-Output "PowerShell $($PSVersionTable.PSEdition) version $($PSVersionTable.PSVersion)" | ||
|
||
Set-StrictMode -Version 2.0; $ErrorActionPreference = "Stop"; $ConfirmPreference = "None"; trap { Write-Error $_ -ErrorAction Continue; exit 1 } | ||
|
||
########################################################################### | ||
# CONFIGURATION | ||
########################################################################### | ||
|
||
$SolutionDirectory = Split-Path $PSScriptRoot -Parent | ||
$BuildProjectFile = "$SolutionDirectory\Build\Build.csproj" | ||
$TempDirectory = "$SolutionDirectory\.nuke\temp" | ||
|
||
$DotNetGlobalFile = "$SolutionDirectory\global.json" | ||
$DotNetInstallUrl = "https://dot.net/v1/dotnet-install.ps1" | ||
$DotNetChannel = "Current" | ||
|
||
$env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = 1 | ||
$env:DOTNET_CLI_TELEMETRY_OPTOUT = 1 | ||
$env:DOTNET_MULTILEVEL_LOOKUP = 0 | ||
|
||
########################################################################### | ||
# EXECUTION | ||
########################################################################### | ||
|
||
function ExecSafe([scriptblock] $cmd) { | ||
& $cmd | ||
if ($LASTEXITCODE) { exit $LASTEXITCODE } | ||
} | ||
|
||
# If dotnet CLI is installed globally and it matches requested version, use for execution | ||
if ($null -ne (Get-Command "dotnet" -ErrorAction SilentlyContinue) -and ` | ||
$(dotnet --version) -and $LASTEXITCODE -eq 0) { | ||
$env:DOTNET_EXE = (Get-Command "dotnet").Path | ||
} | ||
else { | ||
# Download install script | ||
$DotNetInstallFile = "$TempDirectory\dotnet-install.ps1" | ||
New-Item -ItemType Directory -Path $TempDirectory -Force | Out-Null | ||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | ||
(New-Object System.Net.WebClient).DownloadFile($DotNetInstallUrl, $DotNetInstallFile) | ||
|
||
# If global.json exists, load expected version | ||
if (Test-Path $DotNetGlobalFile) { | ||
$DotNetGlobal = $(Get-Content $DotNetGlobalFile | Out-String | ConvertFrom-Json) | ||
if ($DotNetGlobal.PSObject.Properties["sdk"] -and $DotNetGlobal.sdk.PSObject.Properties["version"]) { | ||
$DotNetVersion = $DotNetGlobal.sdk.version | ||
} | ||
} | ||
|
||
# Install by channel or version | ||
$DotNetDirectory = "$TempDirectory\dotnet-win" | ||
if (!(Test-Path variable:DotNetVersion)) { | ||
ExecSafe { & powershell $DotNetInstallFile -InstallDir $DotNetDirectory -Channel $DotNetChannel -NoPath } | ||
} else { | ||
ExecSafe { & powershell $DotNetInstallFile -InstallDir $DotNetDirectory -Version $DotNetVersion -NoPath } | ||
} | ||
$env:DOTNET_EXE = "$DotNetDirectory\dotnet.exe" | ||
} | ||
|
||
Write-Output "Microsoft (R) .NET SDK version $(& $env:DOTNET_EXE --version)" | ||
|
||
ExecSafe { & $env:DOTNET_EXE build $BuildProjectFile /nodeReuse:false /p:UseSharedCompilation=false -nologo -clp:NoSummary --verbosity quiet } | ||
ExecSafe { & $env:DOTNET_EXE run --project $BuildProjectFile --no-build -- $BuildArguments } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$schema": "./build.schema.json", | ||
"Solution": "AllInOneSolution.sln", | ||
"Verbosity": "Normal" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" | ||
name="Nuke Clean" | ||
type="RunExe" | ||
factoryName=".NET Executable"> | ||
<option name="EXE_PATH" | ||
value="$USER_HOME$/.dotnet/tools/nuke.exe"/> | ||
<option name="PROGRAM_PARAMETERS" | ||
value="--Cleaning --skip Compile"/> | ||
<option name="WORKING_DIRECTORY" | ||
value="$PROJECT_DIR$/"/> | ||
<option name="PASS_PARENT_ENVS" | ||
value="1"/> | ||
<option name="USE_EXTERNAL_CONSOLE" | ||
value="0"/> | ||
<option name="USE_MONO" | ||
value="0"/> | ||
<option name="RUNTIME_ARGUMENTS" | ||
value=""/> | ||
<method v="2"> | ||
<option name="CleanSolution" | ||
enabled="true"/> | ||
</method> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" | ||
name="Nuke Plan" | ||
type="RunExe" | ||
factoryName=".NET Executable"> | ||
<option name="EXE_PATH" | ||
value="$USER_HOME$/.dotnet/tools/nuke.exe"/> | ||
<option name="PROGRAM_PARAMETERS" | ||
value="--plan"/> | ||
<option name="WORKING_DIRECTORY" | ||
value="$PROJECT_DIR$/"/> | ||
<option name="PASS_PARENT_ENVS" | ||
value="1"/> | ||
<option name="USE_EXTERNAL_CONSOLE" | ||
value="0"/> | ||
<option name="USE_MONO" | ||
value="0"/> | ||
<option name="RUNTIME_ARGUMENTS" | ||
value=""/> | ||
<method v="2"/> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" | ||
name="Nuke" | ||
type="RunExe" | ||
factoryName=".NET Executable"> | ||
<option name="EXE_PATH" | ||
value="$USER_HOME$/.dotnet/tools/nuke.exe"/> | ||
<option name="PROGRAM_PARAMETERS" | ||
value=""/> | ||
<option name="WORKING_DIRECTORY" | ||
value="$PROJECT_DIR$/"/> | ||
<option name="PASS_PARENT_ENVS" | ||
value="1"/> | ||
<option name="USE_EXTERNAL_CONSOLE" | ||
value="0"/> | ||
<option name="USE_MONO" | ||
value="0"/> | ||
<option name="RUNTIME_ARGUMENTS" | ||
value=""/> | ||
<method v="2"/> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C8C1B8A6-4218-414C-AACC-7F8F6EE16D79}" | ||
ProjectSection(SolutionItems) = preProject | ||
.gitignore = .gitignore | ||
Changelog.md = Changelog.md | ||
Readme.md = Readme.md | ||
Build\Build.Configuration.cs = Build\Build.Configuration.cs | ||
EndProjectSection | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Build", "build\Build.csproj", "{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Installer", "install\Installer.csproj", "{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RevitAddIn", "source\RevitAddIn\RevitAddIn.csproj", "{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModalModule", "source\ModalModule\ModalModule.csproj", "{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModelessModule", "source\ModelessModule\ModelessModule.csproj", "{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug R20|Any CPU = Debug R20|Any CPU | ||
Debug R21|Any CPU = Debug R21|Any CPU | ||
Debug R22|Any CPU = Debug R22|Any CPU | ||
Debug R23|Any CPU = Debug R23|Any CPU | ||
Debug R24|Any CPU = Debug R24|Any CPU | ||
Debug R25|Any CPU = Debug R25|Any CPU | ||
Release R20|Any CPU = Release R20|Any CPU | ||
Release R21|Any CPU = Release R21|Any CPU | ||
Release R22|Any CPU = Release R22|Any CPU | ||
Release R23|Any CPU = Release R23|Any CPU | ||
Release R24|Any CPU = Release R24|Any CPU | ||
Release R25|Any CPU = Release R25|Any CPU | ||
Installer|Any CPU = Installer|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Debug R20|Any CPU.ActiveCfg = Debug|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Debug R21|Any CPU.ActiveCfg = Debug|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Debug R22|Any CPU.ActiveCfg = Debug|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Debug R23|Any CPU.ActiveCfg = Debug|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Debug R24|Any CPU.ActiveCfg = Debug|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Debug R25|Any CPU.ActiveCfg = Debug|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Release R20|Any CPU.ActiveCfg = Release|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Release R21|Any CPU.ActiveCfg = Release|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Release R22|Any CPU.ActiveCfg = Release|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Release R23|Any CPU.ActiveCfg = Release|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Release R24|Any CPU.ActiveCfg = Release|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Release R25|Any CPU.ActiveCfg = Release|Any CPU | ||
{67EDBAB7-E0A8-46E7-B7F2-3F004B0B0FA4}.Installer|Any CPU.ActiveCfg = Release|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Debug R20|Any CPU.ActiveCfg = Debug|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Debug R21|Any CPU.ActiveCfg = Debug|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Debug R22|Any CPU.ActiveCfg = Debug|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Debug R23|Any CPU.ActiveCfg = Debug|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Debug R24|Any CPU.ActiveCfg = Debug|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Debug R25|Any CPU.ActiveCfg = Debug|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Release R20|Any CPU.ActiveCfg = Release|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Release R21|Any CPU.ActiveCfg = Release|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Release R22|Any CPU.ActiveCfg = Release|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Release R23|Any CPU.ActiveCfg = Release|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Release R24|Any CPU.ActiveCfg = Release|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Release R25|Any CPU.ActiveCfg = Release|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Installer|Any CPU.ActiveCfg = Release|Any CPU | ||
{AC520AB0-D2D3-403E-8B5B-8895ACBB8E89}.Installer|Any CPU.Build.0 = Release|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R20|Any CPU.ActiveCfg = Debug R20|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R20|Any CPU.Build.0 = Debug R20|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R21|Any CPU.ActiveCfg = Debug R21|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R21|Any CPU.Build.0 = Debug R21|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R22|Any CPU.ActiveCfg = Debug R22|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R22|Any CPU.Build.0 = Debug R22|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R23|Any CPU.ActiveCfg = Debug R23|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R23|Any CPU.Build.0 = Debug R23|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R25|Any CPU.ActiveCfg = Debug R25|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R25|Any CPU.Build.0 = Debug R25|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R24|Any CPU.ActiveCfg = Debug R24|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Debug R24|Any CPU.Build.0 = Debug R24|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Installer|Any CPU.ActiveCfg = Release R25|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R20|Any CPU.ActiveCfg = Release R20|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R21|Any CPU.ActiveCfg = Release R21|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R22|Any CPU.ActiveCfg = Release R22|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R23|Any CPU.ActiveCfg = Release R23|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R24|Any CPU.ActiveCfg = Release R24|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R25|Any CPU.ActiveCfg = Release R25|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R20|Any CPU.Build.0 = Release R20|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R21|Any CPU.Build.0 = Release R21|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R22|Any CPU.Build.0 = Release R22|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R23|Any CPU.Build.0 = Release R23|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R24|Any CPU.Build.0 = Release R24|Any CPU | ||
{7670A05E-950C-4CDC-A9FE-D1D6FFE9B836}.Release R25|Any CPU.Build.0 = Release R25|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R20|Any CPU.ActiveCfg = Debug R20|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R20|Any CPU.Build.0 = Debug R20|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R21|Any CPU.ActiveCfg = Debug R21|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R21|Any CPU.Build.0 = Debug R21|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R22|Any CPU.ActiveCfg = Debug R22|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R22|Any CPU.Build.0 = Debug R22|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R23|Any CPU.ActiveCfg = Debug R23|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R23|Any CPU.Build.0 = Debug R23|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R24|Any CPU.ActiveCfg = Debug R24|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R24|Any CPU.Build.0 = Debug R24|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R25|Any CPU.ActiveCfg = Debug R25|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Debug R25|Any CPU.Build.0 = Debug R25|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Installer|Any CPU.ActiveCfg = Release R25|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R20|Any CPU.ActiveCfg = Release R20|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R21|Any CPU.ActiveCfg = Release R21|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R22|Any CPU.ActiveCfg = Release R22|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R23|Any CPU.ActiveCfg = Release R23|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R24|Any CPU.ActiveCfg = Release R24|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R25|Any CPU.ActiveCfg = Release R25|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R20|Any CPU.Build.0 = Release R20|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R21|Any CPU.Build.0 = Release R21|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R22|Any CPU.Build.0 = Release R22|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R23|Any CPU.Build.0 = Release R23|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R24|Any CPU.Build.0 = Release R24|Any CPU | ||
{C0E878A2-AAEF-4E84-8B06-3EDB6E9C708A}.Release R25|Any CPU.Build.0 = Release R25|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R20|Any CPU.ActiveCfg = Debug R20|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R20|Any CPU.Build.0 = Debug R20|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R21|Any CPU.ActiveCfg = Debug R21|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R21|Any CPU.Build.0 = Debug R21|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R22|Any CPU.ActiveCfg = Debug R22|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R22|Any CPU.Build.0 = Debug R22|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R23|Any CPU.ActiveCfg = Debug R23|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R23|Any CPU.Build.0 = Debug R23|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R24|Any CPU.ActiveCfg = Debug R24|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R24|Any CPU.Build.0 = Debug R24|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R25|Any CPU.ActiveCfg = Debug R25|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Debug R25|Any CPU.Build.0 = Debug R25|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Installer|Any CPU.ActiveCfg = Release R25|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R20|Any CPU.ActiveCfg = Release R20|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R21|Any CPU.ActiveCfg = Release R21|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R22|Any CPU.ActiveCfg = Release R22|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R23|Any CPU.ActiveCfg = Release R23|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R24|Any CPU.ActiveCfg = Release R24|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R25|Any CPU.ActiveCfg = Release R25|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R20|Any CPU.Build.0 = Release R20|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R21|Any CPU.Build.0 = Release R21|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R22|Any CPU.Build.0 = Release R22|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R23|Any CPU.Build.0 = Release R23|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R24|Any CPU.Build.0 = Release R24|Any CPU | ||
{DDCE6DF1-727A-4C02-91FE-A8957980B2ED}.Release R25|Any CPU.Build.0 = Release R25|Any CPU | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 1.0.0 | ||
|
||
Initial release. Enjoy! |
Oops, something went wrong.