Skip to content

Commit

Permalink
Merge branch 'release/v0.4' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiascibien committed Nov 29, 2021
2 parents 4a3bdb0 + 906c054 commit 1ac3b91
Show file tree
Hide file tree
Showing 47 changed files with 1,564 additions and 406 deletions.
12 changes: 12 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: mattiascibien
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
62 changes: 60 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Publish
run: dotnet publish ./GodotHub/GodotHub.csproj -c Release -r ${{ matrix.runtime }} --self-contained
run: dotnet publish ./GodotHub/GodotHub.csproj -c Release -r ${{ matrix.runtime }} --self-contained -p:PublishReadyToRun=true -p:PublishSingleFile=true -p:PublishTrimmed=true
- name: Zip all
run: |
if [ "${{ matrix.runtime }}" == "win-x64" ]; then
Expand Down Expand Up @@ -90,14 +90,72 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Pack
run: dotnet pack ./GodotHub/GodotHub.csproj -c Release /p:PublishSingleFile=false /p:PublishTrimmed=false /p:PublishReadyToRun=false
run: dotnet pack ./GodotHub/GodotHub.csproj -c Release
- name: Archive nupkg artifacts
uses: actions/upload-artifact@v2
with:
name: godot-hub-${{ steps.gitversion.outputs.semVer }}
path: |
./GodotHub/bin/Release/*.nupkg
# package-windows-store-msix:
# needs: build-and-test
# runs-on: windows-2022
# env:
# Solution_Name: GodotHub.sln
# Wap_Project_Directory: GodotHub.WindowsStore
# Wap_Project_Path: GodotHub.WindowsStore\GodotHub.WindowsStore.wapproj
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - name: Setup .NET
# uses: actions/setup-dotnet@v1
# with:
# dotnet-version: 6.0.x
# - name: Install GitVersion
# uses: gittools/actions/gitversion/setup@v0.9.7
# with:
# versionSpec: '5.x'
# - name: Determine Version
# id: gitversion
# uses: gittools/actions/gitversion/execute@v0.9.7
# with:
# useConfigFile: true
# - name: Update manifest version
# run: |
# [xml]$manifest = get-content ".\$env:Wap_Project_Directory\Package.appxmanifest"
# $manifest.Package.Identity.Version = "${{ steps.gitversion.outputs.AssemblySemVer }}"
# $manifest.save(".\$env:Wap_Project_Directory\Package.appxmanifest")
# - name: Setup MSBuild.exe
# uses: microsoft/setup-msbuild@v1.1
# with:
# vs-version: '[17.0,18.0)'
# - name: Restore the application
# run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration /p:RuntimeIdentifier="win-x64"
# env:
# Configuration: Release
# - name: Decode the pfx
# run: |
# $pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.Base64_Encoded_Pfx }}")
# $certificatePath = Join-Path -Path $env:Wap_Project_Directory -ChildPath GitHubActionsWorkflow.pfx
# [IO.File]::WriteAllBytes("$certificatePath", $pfx_cert_byte)
# - name: Create the app package
# run: msbuild $env:Wap_Project_Path /p:Platform=$env:TargetPlatform /p:AppxBundlePlatforms=$env:Appx_Bundle_Platforms /p:Configuration=$env:Configuration /p:SolutionDir=. /p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode /p:AppxBundle=$env:Appx_Bundle /p:PackageCertificateKeyFile=GitHubActionsWorkflow.pfx /p:PackageCertificatePassword="${{ secrets.Pfx_Key }}"
# env:
# Appx_Bundle: Always
# TargetPlatform: x64
# Appx_Bundle_Platforms: x64
# Appx_Package_Build_Mode: StoreUpload
# Configuration: Release
# - name: Remove the pfx
# run: Remove-Item -path $env:Wap_Project_Directory\GitHubActionsWorkflow.pfx
# - name: Upload build artifacts
# uses: actions/upload-artifact@v2
# with:
# name: MSIX Package
# path: ${{ env.Wap_Project_Directory }}\AppPackages

release:
needs: [package-standalone, package-dotnet-tool]
if: startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -452,3 +452,5 @@ $RECYCLE.BIN/
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

GodotHub/Properties/launchSettings.json
2 changes: 1 addition & 1 deletion GodotHub.Tests/Core/CurrentOSTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace GodotHub.Tests.Core
{
public class CurrentOSTests
{
{
[SkippableFact]
public void ReturnsCorrectOSWindows()
{
Expand Down
2 changes: 2 additions & 0 deletions GodotHub.Tests/GodotHub.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>

<Platforms>AnyCPU;x64;x86</Platforms>
</PropertyGroup>

<ItemGroup>
Expand Down
95 changes: 95 additions & 0 deletions GodotHub.WindowsStore/GodotHub.WindowsStore.wapproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '15.0'">
<VisualStudioVersion>15.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x86">
<Configuration>Debug</Configuration>
<Platform>x86</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x86">
<Configuration>Release</Configuration>
<Platform>x86</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup>
<WapProjPath Condition="'$(WapProjPath)'==''">$(MSBuildExtensionsPath)\Microsoft\DesktopBridge\</WapProjPath>
</PropertyGroup>
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.props" />
<PropertyGroup>
<ProjectGuid>8476dbf8-c67d-4489-b017-3db3f8484795</ProjectGuid>
<TargetPlatformVersion>10.0.20348.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.17134.0</TargetPlatformMinVersion>
<DefaultLanguage>en-US</DefaultLanguage>
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
<NoWarn>$(NoWarn);NU1702</NoWarn>
<EntryPointProjectUniqueName>..\GodotHub\GodotHub.csproj</EntryPointProjectUniqueName>
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
<GenerateTestArtifacts>True</GenerateTestArtifacts>
<AppxBundlePlatforms>x86|x64</AppxBundlePlatforms>
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
</ItemGroup>
<ItemGroup>
<Content Include="Images\SplashScreen.scale-200.png" />
<Content Include="Images\LockScreenLogo.scale-200.png" />
<Content Include="Images\Square150x150Logo.scale-200.png" />
<Content Include="Images\Square44x44Logo.scale-200.png" />
<Content Include="Images\Square44x44Logo.targetsize-24_altform-unplated.png" />
<Content Include="Images\StoreLogo.png" />
<Content Include="Images\Wide310x150Logo.scale-200.png" />
<None Include="Package.StoreAssociation.xml" />
</ItemGroup>
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.targets" />
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22000.196" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GodotHub\GodotHub.csproj" />
</ItemGroup>
</Project>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added GodotHub.WindowsStore/Images/StoreLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions GodotHub.WindowsStore/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>

<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
IgnorableNamespaces="uap rescap uap3">

<Identity
Name="42950MattiasCibien.GodotHub"
Publisher="CN=96078266-EC6A-4EE8-8374-B7F503C42920"
Version="1.0.4.0" />

<Properties>
<DisplayName>GodotHub</DisplayName>
<PublisherDisplayName>Mattias Cibien</PublisherDisplayName>
<Logo>Images\StoreLogo.png</Logo>
</Properties>

<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
</Dependencies>

<Resources>
<Resource Language="x-generate"/>
</Resources>

<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
<uap:VisualElements
DisplayName="GodotHub"
Description="GodotHub.WindowsStore"
BackgroundColor="transparent"
Square150x150Logo="Images\Square150x150Logo.png"
Square44x44Logo="Images\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
<uap:SplashScreen Image="Images\SplashScreen.png" />
</uap:VisualElements>
<Extensions>
<uap3:Extension Category="windows.appExecutionAlias" Executable="GodotHub\godot-hub.exe" EntryPoint="Windows.FullTrustApplication">
<uap3:AppExecutionAlias>
<desktop:ExecutionAlias Alias="godot-hub.exe" />
</uap3:AppExecutionAlias>
</uap3:Extension>
</Extensions>
</Application>
</Applications>

<Capabilities>
<Capability Name="internetClient" />
<rescap:Capability Name="runFullTrust" />
</Capabilities>
</Package>
68 changes: 32 additions & 36 deletions GodotHub.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,60 +7,56 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GodotHub", "GodotHub\GodotH
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GodotHub.Tests", "GodotHub.Tests\GodotHub.Tests.csproj", "{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}"
EndProject
Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "GodotHub.WindowsStore", "GodotHub.WindowsStore\GodotHub.WindowsStore.wapproj", "{8476DBF8-C67D-4489-B017-3DB3F8484795}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|ARM.ActiveCfg = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|ARM.Build.0 = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|ARM64.Build.0 = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|x64.ActiveCfg = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|x64.Build.0 = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|x86.ActiveCfg = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|x86.Build.0 = Debug|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|x64.ActiveCfg = Debug|x64
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|x64.Build.0 = Debug|x64
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|x86.ActiveCfg = Debug|x86
{22D15570-5286-407B-9512-D03F9D3749D7}.Debug|x86.Build.0 = Debug|x86
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|Any CPU.Build.0 = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|ARM.ActiveCfg = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|ARM.Build.0 = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|ARM64.ActiveCfg = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|ARM64.Build.0 = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|x64.ActiveCfg = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|x64.Build.0 = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|x86.ActiveCfg = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|x86.Build.0 = Release|Any CPU
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|x64.ActiveCfg = Release|x64
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|x64.Build.0 = Release|x64
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|x86.ActiveCfg = Release|x86
{22D15570-5286-407B-9512-D03F9D3749D7}.Release|x86.Build.0 = Release|x86
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|ARM.ActiveCfg = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|ARM.Build.0 = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|ARM64.Build.0 = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|x64.ActiveCfg = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|x64.Build.0 = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|x86.ActiveCfg = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|x86.Build.0 = Debug|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|x64.ActiveCfg = Debug|x64
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|x64.Build.0 = Debug|x64
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|x86.ActiveCfg = Debug|x86
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Debug|x86.Build.0 = Debug|x86
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|Any CPU.Build.0 = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|ARM.ActiveCfg = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|ARM.Build.0 = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|ARM64.ActiveCfg = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|ARM64.Build.0 = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|x64.ActiveCfg = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|x64.Build.0 = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|x86.ActiveCfg = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|x86.Build.0 = Release|Any CPU
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|x64.ActiveCfg = Release|x64
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|x64.Build.0 = Release|x64
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|x86.ActiveCfg = Release|x86
{E1B16875-A6B6-4927-B7EB-5E66CF8F60B2}.Release|x86.Build.0 = Release|x86
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Debug|Any CPU.ActiveCfg = Debug|x64
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Debug|x64.ActiveCfg = Debug|x64
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Debug|x64.Build.0 = Debug|x64
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Debug|x64.Deploy.0 = Debug|x64
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Debug|x86.ActiveCfg = Debug|x86
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Debug|x86.Build.0 = Debug|x86
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Debug|x86.Deploy.0 = Debug|x86
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Release|Any CPU.ActiveCfg = Release|x64
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Release|x64.ActiveCfg = Release|x64
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Release|x64.Build.0 = Release|x64
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Release|x64.Deploy.0 = Release|x64
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Release|x86.ActiveCfg = Release|x86
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Release|x86.Build.0 = Release|x86
{8476DBF8-C67D-4489-B017-3DB3F8484795}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Loading

0 comments on commit 1ac3b91

Please sign in to comment.