trackler 2.2.1.24 → 2.2.1.25
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/trackler/version.rb +1 -1
- data/problem-specifications/TOPICS.txt +73 -73
- data/tracks/bash/config.json +82 -73
- data/tracks/bash/config/maintainers.json +9 -9
- data/tracks/bash/exercises/nucleotide-count/README.md +38 -0
- data/tracks/bash/exercises/nucleotide-count/example.sh +38 -0
- data/tracks/bash/exercises/nucleotide-count/nucleotide_count_test.sh +29 -0
- data/tracks/csharp/.travis.yml +9 -2
- data/tracks/csharp/build.cake +7 -34
- data/tracks/csharp/build.ps1 +2 -2
- data/tracks/csharp/build.sh +2 -2
- data/tracks/csharp/docs/GENERATORS.md +102 -0
- data/tracks/csharp/exercises/Exercises.sln +669 -0
- data/tracks/csharp/exercises/queen-attack/Example.cs +14 -1
- data/tracks/csharp/exercises/queen-attack/QueenAttack.cs +6 -1
- data/tracks/csharp/exercises/queen-attack/QueenAttackTest.cs +57 -19
- data/tracks/csharp/generators/Exercises/QueenAttack.cs +85 -0
- data/tracks/d/README.md +3 -2
- data/tracks/d/docs/SNIPPET.txt +7 -0
- data/tracks/d/exercises/crypto-square/.dub/dub.json +6 -0
- data/tracks/d/exercises/crypto-square/example/crypto_square.d +4 -2
- data/tracks/dart/exercises/bob/pubspec.lock +28 -16
- data/tracks/dart/exercises/bob/pubspec.yaml +1 -1
- data/tracks/dart/exercises/bob/test/bob_test.dart +2 -0
- data/tracks/dart/exercises/difference-of-squares/pubspec.lock +28 -16
- data/tracks/dart/exercises/difference-of-squares/pubspec.yaml +1 -1
- data/tracks/dart/exercises/gigasecond/pubspec.lock +28 -16
- data/tracks/dart/exercises/gigasecond/pubspec.yaml +1 -1
- data/tracks/dart/exercises/hamming/pubspec.lock +28 -16
- data/tracks/dart/exercises/hamming/pubspec.yaml +1 -1
- data/tracks/dart/exercises/hello-world/pubspec.lock +28 -16
- data/tracks/dart/exercises/hello-world/pubspec.yaml +1 -1
- data/tracks/dart/exercises/hello-world/test/hello_world_test.dart +13 -15
- data/tracks/dart/exercises/leap/pubspec.lock +28 -16
- data/tracks/dart/exercises/leap/pubspec.yaml +1 -1
- data/tracks/dart/exercises/rna-transcription/pubspec.lock +28 -16
- data/tracks/dart/exercises/rna-transcription/pubspec.yaml +1 -1
- data/tracks/elixir/exercises/pig-latin/example.exs +17 -18
- data/tracks/elixir/exercises/pig-latin/pig_latin_test.exs +16 -1
- data/tracks/fsharp/build.cake +0 -2
- data/tracks/go/exercises/error-handling/.meta/description.md +39 -0
- data/tracks/go/exercises/error-handling/.meta/hints.md +5 -0
- data/tracks/go/exercises/error-handling/.meta/metadata.yml +2 -0
- data/tracks/go/exercises/error-handling/README.md +43 -5
- data/tracks/go/exercises/error-handling/common.go +4 -3
- data/tracks/go/exercises/error-handling/error_handling_test.go +1 -38
- data/tracks/go/exercises/secret-handshake/secret_handshake_test.go +3 -1
- data/tracks/haxe/docs/LEARNING.md +8 -0
- data/tracks/java/.gitignore +2 -1
- data/tracks/java/config.json +337 -491
- data/tracks/java/config/maintainers.json +26 -26
- data/tracks/java/exercises/bob/src/test/java/BobTest.java +7 -1
- data/tracks/java/exercises/rna-transcription/src/example/java/RnaTranscription.java +4 -2
- data/tracks/java/exercises/rna-transcription/src/main/java/RnaTranscription.java +5 -3
- data/tracks/java/exercises/rna-transcription/src/test/java/RnaTranscriptionTest.java +21 -26
- data/tracks/javascript/config.json +662 -664
- data/tracks/javascript/config/maintainers.json +35 -35
- data/tracks/javascript/exercises/simple-cipher/simple-cipher.spec.js +7 -3
- data/tracks/plsql/config.json +52 -66
- data/tracks/plsql/docs/SNIPPET.txt +6 -0
- data/tracks/plsql/exercises/hello-world/example.plsql +20 -0
- data/tracks/plsql/exercises/hello-world/hello_world#.plsql +20 -0
- data/tracks/plsql/exercises/hello-world/ut_hello_world#.plsql +60 -0
- data/tracks/sml/Makefile +5 -0
- data/tracks/sml/bin/generate +3 -4
- data/tracks/sml/config.json +55 -5
- data/tracks/sml/exercises/collatz-conjecture/README.md +63 -0
- data/tracks/sml/exercises/collatz-conjecture/collatz-conjecture.sml +4 -0
- data/tracks/sml/exercises/collatz-conjecture/example.sml +17 -0
- data/tracks/sml/exercises/collatz-conjecture/test.sml +30 -0
- data/tracks/sml/exercises/collatz-conjecture/testlib.sml +159 -0
- data/tracks/sml/exercises/leap/README.md +63 -0
- data/tracks/sml/exercises/leap/example.sml +2 -0
- data/tracks/sml/exercises/leap/leap.sml +2 -0
- data/tracks/sml/exercises/leap/test.sml +24 -0
- data/tracks/sml/exercises/leap/testlib.sml +159 -0
- data/tracks/sml/exercises/rna-transcription/README.md +55 -0
- data/tracks/sml/exercises/rna-transcription/example.sml +20 -0
- data/tracks/sml/exercises/rna-transcription/rna-transcription.sml +2 -0
- data/tracks/sml/exercises/rna-transcription/test.sml +36 -0
- data/tracks/sml/exercises/rna-transcription/testlib.sml +159 -0
- data/tracks/sml/exercises/sum-of-multiples/README.md +48 -0
- data/tracks/sml/exercises/sum-of-multiples/example.sml +8 -0
- data/tracks/sml/exercises/sum-of-multiples/sum-of-multiples.sml +2 -0
- data/tracks/sml/exercises/sum-of-multiples/test.sml +48 -0
- data/tracks/sml/exercises/sum-of-multiples/testlib.sml +159 -0
- data/tracks/sml/exercises/two-fer/README.md +78 -0
- data/tracks/sml/exercises/two-fer/example.sml +1 -0
- data/tracks/sml/exercises/two-fer/test.sml +21 -0
- data/tracks/sml/exercises/two-fer/testlib.sml +159 -0
- data/tracks/sml/exercises/two-fer/two-fer.sml +2 -0
- metadata +43 -5
- data/tracks/csharp/exercises/Exercises.All.sln +0 -1545
- data/tracks/csharp/exercises/Exercises.Default.sln +0 -1503
- data/tracks/csharp/exercises/Exercises.Refactoring.sln +0 -61
@@ -0,0 +1,38 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
input="$1";
|
4
|
+
|
5
|
+
a=0
|
6
|
+
c=0
|
7
|
+
g=0
|
8
|
+
t=0
|
9
|
+
|
10
|
+
function end() {
|
11
|
+
echo "A: ${a}"
|
12
|
+
echo "C: ${c}"
|
13
|
+
echo "G: ${g}"
|
14
|
+
echo "T: ${t}"
|
15
|
+
exit
|
16
|
+
}
|
17
|
+
|
18
|
+
if [ ! -n "$input" ]; then
|
19
|
+
end
|
20
|
+
fi
|
21
|
+
|
22
|
+
for i in $(seq 1 ${#input}); do
|
23
|
+
char=${input:i-1:1}
|
24
|
+
if [ "${char}" = "A" ]; then
|
25
|
+
a=$((a+1))
|
26
|
+
elif [ "${char}" = "C" ]; then
|
27
|
+
c=$((c+1))
|
28
|
+
elif [ "${char}" = "G" ]; then
|
29
|
+
g=$((g+1))
|
30
|
+
elif [ "${char}" = "T" ]; then
|
31
|
+
t=$((t+1))
|
32
|
+
else
|
33
|
+
echo "Invalid nucleotide in strand"
|
34
|
+
exit 1
|
35
|
+
fi
|
36
|
+
done
|
37
|
+
|
38
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env bats
|
2
|
+
|
3
|
+
@test "empty strand" {
|
4
|
+
run ./nucleotide_count.sh ""
|
5
|
+
|
6
|
+
[ "$status" -eq 0 ]
|
7
|
+
[ "$output" = $'A: 0\nC: 0\nG: 0\nT: 0' ]
|
8
|
+
}
|
9
|
+
|
10
|
+
@test "strand with repeated nucleotide" {
|
11
|
+
run ./nucleotide_count.sh "GGGGGGG"
|
12
|
+
|
13
|
+
[ "$status" -eq 0 ]
|
14
|
+
[ "$output" = $'A: 0\nC: 0\nG: 7\nT: 0' ]
|
15
|
+
}
|
16
|
+
|
17
|
+
@test "strand with multiple nucleotides" {
|
18
|
+
run ./nucleotide_count.sh "AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC"
|
19
|
+
|
20
|
+
[ "$status" -eq 0 ]
|
21
|
+
[ "$output" = $'A: 20\nC: 12\nG: 17\nT: 21' ]
|
22
|
+
}
|
23
|
+
|
24
|
+
@test "strand with invalid nucleotides" {
|
25
|
+
run ./nucleotide_count.sh "AGXXACT"
|
26
|
+
|
27
|
+
[ "$status" -eq 1 ]
|
28
|
+
[ "$output" = "Invalid nucleotide in strand" ]
|
29
|
+
}
|
data/tracks/csharp/.travis.yml
CHANGED
@@ -1,15 +1,22 @@
|
|
1
1
|
language: csharp
|
2
2
|
dist: trusty
|
3
|
-
dotnet:
|
3
|
+
dotnet: 2.0.0
|
4
4
|
mono: none
|
5
5
|
env:
|
6
6
|
global:
|
7
7
|
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
|
8
8
|
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
9
|
+
addons:
|
10
|
+
apt:
|
11
|
+
sources:
|
12
|
+
- sourceline: 'deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-trusty-prod trusty main'
|
13
|
+
key_url: 'https://packages.microsoft.com/keys/microsoft.asc'
|
14
|
+
packages:
|
15
|
+
- dotnet-dev-1.0.4
|
9
16
|
script:
|
10
17
|
- ./bin/fetch-configlet
|
11
18
|
- ./bin/configlet lint .
|
12
19
|
- ./build.sh
|
13
20
|
cache:
|
14
21
|
directories:
|
15
|
-
- $HOME/.nuget/packages
|
22
|
+
- $HOME/.nuget/packages
|
data/tracks/csharp/build.cake
CHANGED
@@ -3,27 +3,14 @@ using System.Text.RegularExpressions;
|
|
3
3
|
using System.Threading.Tasks;
|
4
4
|
|
5
5
|
var target = Argument("target", "Default");
|
6
|
+
var exercise = Argument<string>("exercise", null);
|
6
7
|
|
7
8
|
var sourceDir = "./exercises";
|
8
9
|
var buildDir = "./build";
|
9
10
|
|
10
|
-
var
|
11
|
-
var refactoringSln = buildDir + "/Exercises.Refactoring.sln";
|
12
|
-
|
13
|
-
var dotNetCoreMSBuildSettings = new DotNetCoreMSBuildSettings
|
11
|
+
var parallelOptions = new ParallelOptions
|
14
12
|
{
|
15
|
-
|
16
|
-
};
|
17
|
-
|
18
|
-
var dotNetCoreBuildSettings = new DotNetCoreBuildSettings
|
19
|
-
{
|
20
|
-
NoIncremental = true,
|
21
|
-
MSBuildSettings = dotNetCoreMSBuildSettings
|
22
|
-
};
|
23
|
-
|
24
|
-
var dotNetCoreTestSettings = new DotNetCoreTestSettings
|
25
|
-
{
|
26
|
-
NoBuild = true
|
13
|
+
MaxDegreeOfParallelism = System.Environment.ProcessorCount
|
27
14
|
};
|
28
15
|
|
29
16
|
Task("Clean")
|
@@ -35,17 +22,11 @@ Task("Clean")
|
|
35
22
|
Task("CopyExercises")
|
36
23
|
.IsDependentOn("Clean")
|
37
24
|
.Does(() => {
|
38
|
-
CopyDirectory(sourceDir, buildDir);
|
39
|
-
});
|
40
|
-
|
41
|
-
Task("RestoreNugetPackages")
|
42
|
-
.IsDependentOn("CopyExercises")
|
43
|
-
.Does(() => {
|
44
|
-
DotNetCoreRestore(allSln);
|
25
|
+
CopyDirectory($"{sourceDir}/{exercise}", $"{buildDir}/{exercise}");
|
45
26
|
});
|
46
27
|
|
47
28
|
Task("EnableAllTests")
|
48
|
-
.IsDependentOn("
|
29
|
+
.IsDependentOn("CopyExercises")
|
49
30
|
.Does(() => {
|
50
31
|
var skipRegex = new Regex(@"Skip\s*=\s*""Remove to run test""", RegexOptions.Compiled);
|
51
32
|
var testFiles = GetFiles(buildDir + "/*/*Test.cs");
|
@@ -63,8 +44,6 @@ Task("EnableAllTests")
|
|
63
44
|
Task("TestRefactoringProjects")
|
64
45
|
.IsDependentOn("EnableAllTests")
|
65
46
|
.Does(() => {
|
66
|
-
DotNetCoreBuild(refactoringSln, dotNetCoreBuildSettings);
|
67
|
-
|
68
47
|
// These projects have a working default implementation, and have
|
69
48
|
// all the tests enabled. These should pass without any changes.
|
70
49
|
var refactoringProjects =
|
@@ -72,7 +51,7 @@ Task("TestRefactoringProjects")
|
|
72
51
|
+ GetFiles(buildDir + "/*/Ledger.csproj")
|
73
52
|
+ GetFiles(buildDir + "/*/Markdown.csproj");
|
74
53
|
|
75
|
-
Parallel.ForEach(refactoringProjects, (project) => DotNetCoreTest(project.FullPath
|
54
|
+
Parallel.ForEach(refactoringProjects, parallelOptions, (project) => DotNetCoreTest(project.FullPath));
|
76
55
|
});
|
77
56
|
|
78
57
|
Task("ReplaceStubWithExample")
|
@@ -94,14 +73,8 @@ Task("ReplaceStubWithExample")
|
|
94
73
|
Task("TestUsingExampleImplementation")
|
95
74
|
.IsDependentOn("ReplaceStubWithExample")
|
96
75
|
.Does(() => {
|
97
|
-
DotNetCoreBuild(allSln, dotNetCoreBuildSettings);
|
98
|
-
var parallelOptions = new ParallelOptions
|
99
|
-
{
|
100
|
-
MaxDegreeOfParallelism = System.Environment.ProcessorCount
|
101
|
-
};
|
102
|
-
|
103
76
|
var allProjects = GetFiles(buildDir + "/*/*.csproj");
|
104
|
-
Parallel.ForEach(allProjects, parallelOptions, (project) => DotNetCoreTest(project.FullPath
|
77
|
+
Parallel.ForEach(allProjects, parallelOptions, (project) => DotNetCoreTest(project.FullPath));
|
105
78
|
});
|
106
79
|
|
107
80
|
Task("Default")
|
data/tracks/csharp/build.ps1
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
$CakeVersion = "0.21.1"
|
2
|
-
$DotNetVersion = "
|
3
|
-
$DotNetInstallerUri = "https://
|
2
|
+
$DotNetVersion = "2.0.0";
|
3
|
+
$DotNetInstallerUri = "https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1";
|
4
4
|
|
5
5
|
# Make sure tools folder exists
|
6
6
|
$PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
|
data/tracks/csharp/build.sh
CHANGED
@@ -5,7 +5,7 @@ SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
5
5
|
TOOLS_DIR=$SCRIPT_DIR/tools
|
6
6
|
CAKE_VERSION=0.21.1
|
7
7
|
CAKE_DLL=$TOOLS_DIR/Cake.CoreCLR.$CAKE_VERSION/Cake.dll
|
8
|
-
DOTNET_VERSION=
|
8
|
+
DOTNET_VERSION=2.0.0
|
9
9
|
|
10
10
|
# Make sure the tools folder exist.
|
11
11
|
if [ ! -d "$TOOLS_DIR" ]; then
|
@@ -22,7 +22,7 @@ if [[ ! $(command -v dotnet) ]] || [ ! $(dotnet --version) == "$DOTNET_VERSION"
|
|
22
22
|
if [ ! -d "$SCRIPT_DIR/.dotnet" ]; then
|
23
23
|
mkdir "$SCRIPT_DIR/.dotnet"
|
24
24
|
fi
|
25
|
-
curl -Lsfo "$SCRIPT_DIR/.dotnet/dotnet-install.sh" https://
|
25
|
+
curl -Lsfo "$SCRIPT_DIR/.dotnet/dotnet-install.sh" https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.sh
|
26
26
|
sudo bash "$SCRIPT_DIR/.dotnet/dotnet-install.sh" --version DOTNET_VERSION --install-dir .dotnet --no-path
|
27
27
|
export PATH="$SCRIPT_DIR/.dotnet":$PATH
|
28
28
|
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
|
@@ -0,0 +1,102 @@
|
|
1
|
+
# Test Generators
|
2
|
+
|
3
|
+
Test generators allow tracks to generate tests automatically without having to write them ourselves. Each test generator reads from the exercise's `canonical data`, which defines the name of the test, its inputs, and outputs. You can read more about exercism's approach to test suites [here](https://github.com/exercism/docs/blob/master/language-tracks/exercises/anatomy/test-suites.md).
|
4
|
+
|
5
|
+
Generating tests automatically removes any sort of user error when creating tests. We want the tests to be accurate with respect to its canonical data. Test generation also makes it much easier to keep tests up to date. As the canonical data changes, the tests will be automatically updated when the generator for that test is run.
|
6
|
+
|
7
|
+
An example of a canonical data file can be found [here](https://github.com/exercism/problem-specifications/blob/master/exercises/bob/canonical-data.json)
|
8
|
+
|
9
|
+
## Common Terms
|
10
|
+
When looking through the canonical data and the generator code base, we use a lot of common terminology. This list hopefully clarifies what they represent.
|
11
|
+
|
12
|
+
- Canonical Data - Represents the entire test suite.
|
13
|
+
- Canonical Data Case - A representation of a single test case.
|
14
|
+
- Description - The name of the test.
|
15
|
+
- Property - The method to be called when running the test.
|
16
|
+
- Input - The input for the test case.
|
17
|
+
- Expected - The expected value when running the test case.
|
18
|
+
|
19
|
+
## Adding A Simple Generator
|
20
|
+
Adding a test generator file is straightforward. Simply add a new file to the generators folder with the name of the exercise (in CamelCase), and extend the `Exercise` abstract class.
|
21
|
+
|
22
|
+
An example of a simple generator would be the Bob exercise. The source is below, but you can freely view it in the repository [here](https://github.com/exercism/csharp/blob/master/generators/Exercises/Bob.cs).
|
23
|
+
|
24
|
+
```csharp
|
25
|
+
namespace Generators.Exercises
|
26
|
+
{
|
27
|
+
public class Bob : Exercise
|
28
|
+
{
|
29
|
+
}
|
30
|
+
}
|
31
|
+
```
|
32
|
+
|
33
|
+
This is a fully working generator, no other code needs to be written. However, it's simplicity stems from the fact that the test suite and the program itself are relatively trivial.
|
34
|
+
|
35
|
+
## Adding A Complex Generator
|
36
|
+
|
37
|
+
A more *complex* generator would be the ComplexNumbers generator found [here](https://github.com/exercism/csharp/blob/master/generators/Exercises/ComplexNumbers.cs).
|
38
|
+
|
39
|
+
The `Exercise` abstract class currently exposes five methods that are used for overriding the default behavior when generating an exercise.
|
40
|
+
|
41
|
+
### void UpdateCanonicalData(CanonicalData canonicalData)
|
42
|
+
Update the canonical data for a given test.
|
43
|
+
|
44
|
+
The most common use for this override is to iterate over each of the canonical data cases.
|
45
|
+
|
46
|
+
As an example, if you wanted to change the default behavior so that when the `Input` value of a test is a negative number, an exception should be thrown, the code would look like this.
|
47
|
+
|
48
|
+
```csharp
|
49
|
+
protected override void UpdateCanonicalData(CanonicalData canonicalData)
|
50
|
+
{
|
51
|
+
foreach (var canonicalDataCase in canonicalData.Cases)
|
52
|
+
{
|
53
|
+
var caseInputLessThanZero = (long)canonicalDataCase.Input["number"] < 0;
|
54
|
+
canonicalDataCase.ExceptionThrown = caseInputLessThanZero ? typeof(ArgumentException) : null;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
```
|
58
|
+
|
59
|
+
### HashSet\<string\> AddAdditionalNamespaces()
|
60
|
+
Allows more namespaces to be added to the test suite.
|
61
|
+
|
62
|
+
The tests use `Xunit` so all tests will automatically include the `Xunit` namespace. However, more advanced tests may require additional namespaces.
|
63
|
+
|
64
|
+
```csharp
|
65
|
+
protected override HashSet<string> AddAdditionalNamespaces()
|
66
|
+
{
|
67
|
+
return new HashSet<string>()
|
68
|
+
{
|
69
|
+
typeof(Dictionary<char, int>).Namespace
|
70
|
+
};
|
71
|
+
}
|
72
|
+
```
|
73
|
+
|
74
|
+
This snippet would add the namespace that the `Dictionary<char,int>` collection lives in (`System.Collections.Generic`).
|
75
|
+
|
76
|
+
### string RenderTestMethodBody[Arrange/Act/Assert]
|
77
|
+
Override the default behavior when rendering a test methods arrange, act, and/or assert sections.
|
78
|
+
|
79
|
+
More advanced tests may need to leverage a `template`. A template allows you to add additional code to a test and assert more complex statements.
|
80
|
+
|
81
|
+
An example of this is the [RunLengthEncoding](https://github.com/exercism/csharp/blob/master/generators/Exercises/RunLengthEncoding.cs) test.
|
82
|
+
|
83
|
+
Here the **Assert** is being overridden. The assert needs to call additional functions, but only if the property is `consistency`. Otherwise, render the assert as usual.
|
84
|
+
|
85
|
+
## Updating Existing Files
|
86
|
+
It is possible that an existing exercise does not match the canonical data. It is OK to update the exercise stub and/or the exercise example to follow the canonical data! An example might be that an exercise is named SumOfMultiples, but the SumOfMultiples.cs and Example.cs files both use `Multiples` as the name of the class.
|
87
|
+
|
88
|
+
Also, if you find an issue with one of the existing generators or test suites simply open up the generator that you would like to update, make your changes, and then run the generators.
|
89
|
+
|
90
|
+
## Running The Generators
|
91
|
+
This repository is coded against [.NET Core](https://www.microsoft.com/net/core). To run the generators all you need to do is run the following command in the generators directory:
|
92
|
+
|
93
|
+
`dotnet run`
|
94
|
+
|
95
|
+
This command will take all of the generators that are in the `Exercises` folder, and generate all of the test cases for that exercise. We use reflection to get all of the exercises, so if you are adding a new test, the test will be automatically included when running the generator.
|
96
|
+
|
97
|
+
Once the generator has been run, you can view the output of your generation by navigating to the test file for that exercise. As an example, the test suite for the Bob exercise can be found at:
|
98
|
+
|
99
|
+
`exercises/bob/BobTest.cs`
|
100
|
+
|
101
|
+
## Submitting A Generator
|
102
|
+
If you are satisfied with the output of your generator, we would love for you to submit a pull request! Please include your generator, updated test suite, and any other corresponding files that you may have changed.
|
@@ -0,0 +1,669 @@
|
|
1
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
2
|
+
# Visual Studio 15
|
3
|
+
VisualStudioVersion = 15.0.26403.7
|
4
|
+
MinimumVisualStudioVersion = 15.0.26124.0
|
5
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accumulate", "accumulate\Accumulate.csproj", "{F16C0EE1-6923-4328-B015-363CF24FF867}"
|
6
|
+
EndProject
|
7
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Acronym", "acronym\Acronym.csproj", "{0B8FF29D-6707-4112-8398-6F383A31524D}"
|
8
|
+
EndProject
|
9
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AllYourBase", "all-your-base\AllYourBase.csproj", "{CFA7CC8D-C585-4AE6-BAD0-840D3DC62A43}"
|
10
|
+
EndProject
|
11
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Allergies", "allergies\Allergies.csproj", "{C9372234-0F42-4E0E-BD55-EAC351D9256C}"
|
12
|
+
EndProject
|
13
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Alphametics", "alphametics\Alphametics.csproj", "{BA7E7612-8AE8-4246-8E09-190445DF9900}"
|
14
|
+
EndProject
|
15
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Anagram", "anagram\Anagram.csproj", "{815C764D-CC32-4BD9-8F32-78A2D030C71E}"
|
16
|
+
EndProject
|
17
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AtbashCipher", "atbash-cipher\AtbashCipher.csproj", "{4CEF0893-7AE3-455E-98C1-89BB822AC1C2}"
|
18
|
+
EndProject
|
19
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankAccount", "bank-account\BankAccount.csproj", "{12BF4BEE-261C-42B8-B2DC-D80262744AC2}"
|
20
|
+
EndProject
|
21
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BeerSong", "beer-song\BeerSong.csproj", "{BE87F8A4-E216-40A7-86CF-153A15BAFEF8}"
|
22
|
+
EndProject
|
23
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BinarySearch", "binary-search\BinarySearch.csproj", "{1F8B6B66-7A58-4F84-9D3A-FB454D2CC3E2}"
|
24
|
+
EndProject
|
25
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BinarySearchTree", "binary-search-tree\BinarySearchTree.csproj", "{6FBC562A-7721-4846-81B6-D79D5AF576C5}"
|
26
|
+
EndProject
|
27
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bob", "bob\Bob.csproj", "{C8D01AEE-9AD9-4134-9721-3442C59702B2}"
|
28
|
+
EndProject
|
29
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookStore", "book-store\BookStore.csproj", "{F9175D9F-7602-4BE1-B565-EA723D0CDF0A}"
|
30
|
+
EndProject
|
31
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bowling", "bowling\Bowling.csproj", "{CE0CA302-A594-422D-A215-E78F2F3AF0CE}"
|
32
|
+
EndProject
|
33
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BracketPush", "bracket-push\BracketPush.csproj", "{A9584773-6FD0-42CB-B94E-A61125C5C1E7}"
|
34
|
+
EndProject
|
35
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Change", "change\Change.csproj", "{31595C04-4C0E-4A72-90A1-054EE5C47BFC}"
|
36
|
+
EndProject
|
37
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CircularBuffer", "circular-buffer\CircularBuffer.csproj", "{A3016178-CED9-4DDD-8FF4-03C420AD77B9}"
|
38
|
+
EndProject
|
39
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Clock", "clock\Clock.csproj", "{D498F024-BA85-4543-88F9-1DCF239470C7}"
|
40
|
+
EndProject
|
41
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Connect", "connect\Connect.csproj", "{2C9B22CE-770A-400B-BD9B-287030CF12BB}"
|
42
|
+
EndProject
|
43
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CryptoSquare", "crypto-square\CryptoSquare.csproj", "{A6151CB7-713E-43B0-A403-9C73F9936D4B}"
|
44
|
+
EndProject
|
45
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomSet", "custom-set\CustomSet.csproj", "{3ED88500-2825-4F24-81E6-C816FF89A5B5}"
|
46
|
+
EndProject
|
47
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Diamond", "diamond\Diamond.csproj", "{93092B18-7447-4F06-AD46-FC7B39EC9E89}"
|
48
|
+
EndProject
|
49
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DifferenceOfSquares", "difference-of-squares\DifferenceOfSquares.csproj", "{07DA1459-6101-43E1-A1AF-48ABD8D62ADD}"
|
50
|
+
EndProject
|
51
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiffieHellman", "diffie-hellman\DiffieHellman.csproj", "{58000112-543C-401E-9D1C-EBABC5A67A14}"
|
52
|
+
EndProject
|
53
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dominoes", "dominoes\Dominoes.csproj", "{99CCDA48-1CA3-46B9-89B8-0B45106304FC}"
|
54
|
+
EndProject
|
55
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotDsl", "dot-dsl\DotDsl.csproj", "{45A818E0-8CDF-44A5-B948-63D8DEB9982E}"
|
56
|
+
EndProject
|
57
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ErrorHandling", "error-handling\ErrorHandling.csproj", "{B341FE12-9233-4E34-8C1C-4E62AC2F8AE1}"
|
58
|
+
EndProject
|
59
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Etl", "etl\Etl.csproj", "{B7E811DB-8575-4C77-9AF9-49DA840557C2}"
|
60
|
+
EndProject
|
61
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlattenArray", "flatten-array\FlattenArray.csproj", "{FD52020A-6F1E-42FA-81CE-1F6A8E7C9737}"
|
62
|
+
EndProject
|
63
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FoodChain", "food-chain\FoodChain.csproj", "{FED33EF6-AC47-4E9A-B615-66B16B846E94}"
|
64
|
+
EndProject
|
65
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Forth", "forth\Forth.csproj", "{ACB24C7C-C92D-43F9-B1B1-9444696DAD36}"
|
66
|
+
EndProject
|
67
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gigasecond", "gigasecond\Gigasecond.csproj", "{2C8C5AE3-D04F-48F4-8AF5-D7535277B7A0}"
|
68
|
+
EndProject
|
69
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GoCounting", "go-counting\GoCounting.csproj", "{A5417213-F20A-4C06-9D8B-8688B0C4EE61}"
|
70
|
+
EndProject
|
71
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GradeSchool", "grade-school\GradeSchool.csproj", "{A03A743F-C645-45CB-80A0-BE10D2FC1A13}"
|
72
|
+
EndProject
|
73
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Grains", "grains\Grains.csproj", "{29C6234D-5562-4495-A014-92388EE4518E}"
|
74
|
+
EndProject
|
75
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Grep", "grep\Grep.csproj", "{4427F391-652B-4804-BED4-7CD0D218FE28}"
|
76
|
+
EndProject
|
77
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hamming", "hamming\Hamming.csproj", "{61BAD6B6-3A48-4E9B-8333-F1884F68A0A5}"
|
78
|
+
EndProject
|
79
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hangman", "hangman\Hangman.csproj", "{DE23A75D-E816-4988-BB2C-7EBEB5BEB6F1}"
|
80
|
+
EndProject
|
81
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorld", "hello-world\HelloWorld.csproj", "{0CC90F16-9B6C-4C87-A49B-600DB3DF0D2A}"
|
82
|
+
EndProject
|
83
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "House", "house\House.csproj", "{4D68748B-6DEF-4E05-830C-43AF09B2CE8A}"
|
84
|
+
EndProject
|
85
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Isogram", "isogram\Isogram.csproj", "{91CF9FC4-105B-4E21-8692-1D5E539E42E9}"
|
86
|
+
EndProject
|
87
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KindergartenGarden", "kindergarten-garden\KindergartenGarden.csproj", "{D504C93E-AE1A-4852-9727-6E565632D38E}"
|
88
|
+
EndProject
|
89
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LargestSeriesProduct", "largest-series-product\LargestSeriesProduct.csproj", "{1632128F-A60B-49B8-A5DB-05F3F1A3B84C}"
|
90
|
+
EndProject
|
91
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Leap", "leap\Leap.csproj", "{8CA92DF0-3C60-4F23-9890-806744E1F514}"
|
92
|
+
EndProject
|
93
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ledger", "ledger\Ledger.csproj", "{507ED1D4-F905-4AAD-897D-AD403FA56663}"
|
94
|
+
EndProject
|
95
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LinkedList", "linked-list\LinkedList.csproj", "{C9ADF8BA-8239-4514-8906-A8E09A1A874C}"
|
96
|
+
EndProject
|
97
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ListOps", "list-ops\ListOps.csproj", "{7370EDAC-0F7C-4008-A8C6-8C6240EE518E}"
|
98
|
+
EndProject
|
99
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Luhn", "luhn\Luhn.csproj", "{6B934B23-6A75-42FC-9B6C-B3F4CFA6673F}"
|
100
|
+
EndProject
|
101
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Markdown", "markdown\Markdown.csproj", "{AFA39C3B-C0A0-445C-8129-4DFD3009B56E}"
|
102
|
+
EndProject
|
103
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Matrix", "matrix\Matrix.csproj", "{BCC05EA8-DB49-4684-9888-1B8688BE3FA6}"
|
104
|
+
EndProject
|
105
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Meetup", "meetup\Meetup.csproj", "{87FCABD0-2762-464E-9489-415E95D12427}"
|
106
|
+
EndProject
|
107
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Minesweeper", "minesweeper\Minesweeper.csproj", "{C84E079F-9790-425A-9C86-C69122811E6F}"
|
108
|
+
EndProject
|
109
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NthPrime", "nth-prime\NthPrime.csproj", "{F437861F-4FF8-418E-B205-FB04D23E0312}"
|
110
|
+
EndProject
|
111
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NucleotideCount", "nucleotide-count\NucleotideCount.csproj", "{6A9E4125-03D1-4DAF-8333-336C49360621}"
|
112
|
+
EndProject
|
113
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OcrNumbers", "ocr-numbers\OcrNumbers.csproj", "{1BA7884A-3D6F-4479-A0F9-44385662FE24}"
|
114
|
+
EndProject
|
115
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PalindromeProducts", "palindrome-products\PalindromeProducts.csproj", "{FBE7E7D4-EBF1-4B0C-B63E-540DA1C9CEAA}"
|
116
|
+
EndProject
|
117
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pangram", "pangram\Pangram.csproj", "{7E047279-FD70-440F-8FB9-B47E88747EF4}"
|
118
|
+
EndProject
|
119
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ParallelLetterFrequency", "parallel-letter-frequency\ParallelLetterFrequency.csproj", "{A60E1C9A-6E52-42F7-ACA2-BB58DA64361E}"
|
120
|
+
EndProject
|
121
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PascalsTriangle", "pascals-triangle\PascalsTriangle.csproj", "{427A9EFA-5E06-4176-A287-0DC0E0CD3E86}"
|
122
|
+
EndProject
|
123
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PerfectNumbers", "perfect-numbers\PerfectNumbers.csproj", "{4B864ACE-495C-46FB-870F-4D794C02C8F9}"
|
124
|
+
EndProject
|
125
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PhoneNumber", "phone-number\PhoneNumber.csproj", "{17419CBD-2AC6-479F-ACA7-D478F9FBF397}"
|
126
|
+
EndProject
|
127
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PigLatin", "pig-latin\PigLatin.csproj", "{03856292-CE47-45EE-91D4-6ACF27E1925F}"
|
128
|
+
EndProject
|
129
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Poker", "poker\Poker.csproj", "{762A1A84-4B1E-49A1-BC58-4988BB489F7C}"
|
130
|
+
EndProject
|
131
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pov", "pov\Pov.csproj", "{3B42D204-BFB1-456F-B5F5-9421EECE465A}"
|
132
|
+
EndProject
|
133
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrimeFactors", "prime-factors\PrimeFactors.csproj", "{F8BC96E4-15E2-4F64-9D25-E167EC207404}"
|
134
|
+
EndProject
|
135
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProteinTranslation", "protein-translation\ProteinTranslation.csproj", "{A2EB7FD7-7660-4297-B431-9833CB65A848}"
|
136
|
+
EndProject
|
137
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Proverb", "proverb\Proverb.csproj", "{086D5907-AAF8-4488-A2AD-4A3430D74FAB}"
|
138
|
+
EndProject
|
139
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PythagoreanTriplet", "pythagorean-triplet\PythagoreanTriplet.csproj", "{6ACF8F5B-B1E1-439B-AFFF-42D6B143760E}"
|
140
|
+
EndProject
|
141
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QueenAttack", "queen-attack\QueenAttack.csproj", "{50FB388F-6D68-400C-A919-0414B87466A7}"
|
142
|
+
EndProject
|
143
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RailFenceCipher", "rail-fence-cipher\RailFenceCipher.csproj", "{F1957BE5-4CA4-494B-A62B-AA4F5E4D460A}"
|
144
|
+
EndProject
|
145
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Raindrops", "raindrops\Raindrops.csproj", "{F2077E7E-7305-4FC7-8D67-D90037B3F370}"
|
146
|
+
EndProject
|
147
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "React", "react\React.csproj", "{3A3D27B8-10FE-4E72-A3CE-183EBC11503B}"
|
148
|
+
EndProject
|
149
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rectangles", "rectangles\Rectangles.csproj", "{A8777E05-E344-4673-915B-E9224002C423}"
|
150
|
+
EndProject
|
151
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RnaTranscription", "rna-transcription\RnaTranscription.csproj", "{05B08A0C-5BCA-4FF6-9C42-9DFF5E7DCDEA}"
|
152
|
+
EndProject
|
153
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RobotName", "robot-name\RobotName.csproj", "{C9CFE66E-6921-4CCE-83A7-D5B54812122F}"
|
154
|
+
EndProject
|
155
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RobotSimulator", "robot-simulator\RobotSimulator.csproj", "{A0FD4472-99E5-4FBC-A6A7-20786EA167DF}"
|
156
|
+
EndProject
|
157
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RomanNumerals", "roman-numerals\RomanNumerals.csproj", "{86272012-C994-41F7-BFAF-4BED50797B22}"
|
158
|
+
EndProject
|
159
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RunLengthEncoding", "run-length-encoding\RunLengthEncoding.csproj", "{94B89563-1E74-42F9-96A5-19CD800AFECB}"
|
160
|
+
EndProject
|
161
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SaddlePoints", "saddle-points\SaddlePoints.csproj", "{E5D2964E-CFE9-4DE6-99B5-1F54F9984F65}"
|
162
|
+
EndProject
|
163
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Say", "say\Say.csproj", "{C92F8E81-6FB1-46FF-9B68-2D126F8903E6}"
|
164
|
+
EndProject
|
165
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScaleGenerator", "scale-generator\ScaleGenerator.csproj", "{B9207BE6-2577-4C49-AF5F-130A17BBEA73}"
|
166
|
+
EndProject
|
167
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScrabbleScore", "scrabble-score\ScrabbleScore.csproj", "{40C19FFA-E1E1-4589-86E4-B7BEF336CE79}"
|
168
|
+
EndProject
|
169
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecretHandshake", "secret-handshake\SecretHandshake.csproj", "{64324C38-03F7-4624-8F00-B85183DDBF99}"
|
170
|
+
EndProject
|
171
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Series", "series\Series.csproj", "{14C24193-D5E0-4D29-B270-C27B43CC1925}"
|
172
|
+
EndProject
|
173
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SgfParsing", "sgf-parsing\SgfParsing.csproj", "{B25208A4-3C80-411E-A36A-7BC4AA506DC7}"
|
174
|
+
EndProject
|
175
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sieve", "sieve\Sieve.csproj", "{2A56B16C-3980-4380-84E8-B20DEEEFB5D6}"
|
176
|
+
EndProject
|
177
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleCipher", "simple-cipher\SimpleCipher.csproj", "{269971FF-B748-4B95-8507-534C229A60B9}"
|
178
|
+
EndProject
|
179
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleLinkedList", "simple-linked-list\SimpleLinkedList.csproj", "{F6244150-1AD9-470E-B0F0-72389B10639E}"
|
180
|
+
EndProject
|
181
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpaceAge", "space-age\SpaceAge.csproj", "{D1102F23-265A-4CA8-975C-75564DFFAA04}"
|
182
|
+
EndProject
|
183
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Strain", "strain\Strain.csproj", "{F4C5ECB6-2C17-4BC9-BF8F-BA9117BD2843}"
|
184
|
+
EndProject
|
185
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sublist", "sublist\Sublist.csproj", "{B9C4BF5F-2D56-4B06-A1EE-1E1CC642D14B}"
|
186
|
+
EndProject
|
187
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SumOfMultiples", "sum-of-multiples\SumOfMultiples.csproj", "{6CE987BF-9677-476C-8BB9-1BE7CC16F932}"
|
188
|
+
EndProject
|
189
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tournament", "tournament\Tournament.csproj", "{BD63E691-0A53-46CE-B687-E3CD95F1D4B1}"
|
190
|
+
EndProject
|
191
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Transpose", "transpose\Transpose.csproj", "{FCF9AB0E-4310-4BCB-8682-833450658B97}"
|
192
|
+
EndProject
|
193
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TreeBuilding", "tree-building\TreeBuilding.csproj", "{607AB17F-1305-4002-A980-DB60699688F1}"
|
194
|
+
EndProject
|
195
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Triangle", "triangle\Triangle.csproj", "{128B3A5D-E28C-4C7F-8B16-3202D0F73A00}"
|
196
|
+
EndProject
|
197
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TwelveDays", "twelve-days\TwelveDays.csproj", "{B98F63AB-F0C8-4594-98BD-0BBBAEA4C4E9}"
|
198
|
+
EndProject
|
199
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TwoBucket", "two-bucket\TwoBucket.csproj", "{62EBA4E5-BD13-4F7C-85E6-65D633B3FB6C}"
|
200
|
+
EndProject
|
201
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VariableLengthQuantity", "variable-length-quantity\VariableLengthQuantity.csproj", "{DFE95B37-24F5-417A-8C3F-788255CE8A04}"
|
202
|
+
EndProject
|
203
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WordCount", "word-count\WordCount.csproj", "{77E253C3-5FCE-45A4-B285-BE24945E0D70}"
|
204
|
+
EndProject
|
205
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WordSearch", "word-search\WordSearch.csproj", "{32ECF281-6D99-42D4-AD00-C8B56A8270F8}"
|
206
|
+
EndProject
|
207
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wordy", "wordy\Wordy.csproj", "{2EBD1C45-9D80-413A-9BE8-4ECB43C06843}"
|
208
|
+
EndProject
|
209
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZebraPuzzle", "zebra-puzzle\ZebraPuzzle.csproj", "{79198D56-C3F2-49D6-B8BF-5BB674B6F7A2}"
|
210
|
+
EndProject
|
211
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zipper", "zipper\Zipper.csproj", "{83504141-FF2A-427E-8A51-9FA0E9037A78}"
|
212
|
+
EndProject
|
213
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RotationalCipher", "rotational-cipher\RotationalCipher.csproj", "{DF67FD2D-4897-43C5-A93E-7CCADBB29E75}"
|
214
|
+
EndProject
|
215
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TwoFer", "two-fer\TwoFer.csproj", "{4B862F51-054D-467F-971D-8A7B72F5B498}"
|
216
|
+
EndProject
|
217
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpiralMatrix", "spiral-matrix\SpiralMatrix.csproj", "{05EF2C70-B5B0-4351-B940-041A03A6BB84}"
|
218
|
+
EndProject
|
219
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CollatzConjecture", "collatz-conjecture\CollatzConjecture.csproj", "{18BC2EE7-E798-40DE-A346-0B803137E67D}"
|
220
|
+
EndProject
|
221
|
+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComplexNumbers", "complex-numbers\ComplexNumbers.csproj", "{D0399EAC-5563-4234-9828-0C607BAF7623}"
|
222
|
+
EndProject
|
223
|
+
Global
|
224
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
225
|
+
Debug|Any CPU = Debug|Any CPU
|
226
|
+
Release|Any CPU = Release|Any CPU
|
227
|
+
EndGlobalSection
|
228
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
229
|
+
{F16C0EE1-6923-4328-B015-363CF24FF867}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
230
|
+
{F16C0EE1-6923-4328-B015-363CF24FF867}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
231
|
+
{F16C0EE1-6923-4328-B015-363CF24FF867}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
232
|
+
{F16C0EE1-6923-4328-B015-363CF24FF867}.Release|Any CPU.Build.0 = Release|Any CPU
|
233
|
+
{0B8FF29D-6707-4112-8398-6F383A31524D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
234
|
+
{0B8FF29D-6707-4112-8398-6F383A31524D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
235
|
+
{0B8FF29D-6707-4112-8398-6F383A31524D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
236
|
+
{0B8FF29D-6707-4112-8398-6F383A31524D}.Release|Any CPU.Build.0 = Release|Any CPU
|
237
|
+
{CFA7CC8D-C585-4AE6-BAD0-840D3DC62A43}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
238
|
+
{CFA7CC8D-C585-4AE6-BAD0-840D3DC62A43}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
239
|
+
{CFA7CC8D-C585-4AE6-BAD0-840D3DC62A43}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
240
|
+
{CFA7CC8D-C585-4AE6-BAD0-840D3DC62A43}.Release|Any CPU.Build.0 = Release|Any CPU
|
241
|
+
{C9372234-0F42-4E0E-BD55-EAC351D9256C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
242
|
+
{C9372234-0F42-4E0E-BD55-EAC351D9256C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
243
|
+
{C9372234-0F42-4E0E-BD55-EAC351D9256C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
244
|
+
{C9372234-0F42-4E0E-BD55-EAC351D9256C}.Release|Any CPU.Build.0 = Release|Any CPU
|
245
|
+
{BA7E7612-8AE8-4246-8E09-190445DF9900}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
246
|
+
{BA7E7612-8AE8-4246-8E09-190445DF9900}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
247
|
+
{BA7E7612-8AE8-4246-8E09-190445DF9900}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
248
|
+
{BA7E7612-8AE8-4246-8E09-190445DF9900}.Release|Any CPU.Build.0 = Release|Any CPU
|
249
|
+
{815C764D-CC32-4BD9-8F32-78A2D030C71E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
250
|
+
{815C764D-CC32-4BD9-8F32-78A2D030C71E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
251
|
+
{815C764D-CC32-4BD9-8F32-78A2D030C71E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
252
|
+
{815C764D-CC32-4BD9-8F32-78A2D030C71E}.Release|Any CPU.Build.0 = Release|Any CPU
|
253
|
+
{4CEF0893-7AE3-455E-98C1-89BB822AC1C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
254
|
+
{4CEF0893-7AE3-455E-98C1-89BB822AC1C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
255
|
+
{4CEF0893-7AE3-455E-98C1-89BB822AC1C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
256
|
+
{4CEF0893-7AE3-455E-98C1-89BB822AC1C2}.Release|Any CPU.Build.0 = Release|Any CPU
|
257
|
+
{12BF4BEE-261C-42B8-B2DC-D80262744AC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
258
|
+
{12BF4BEE-261C-42B8-B2DC-D80262744AC2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
259
|
+
{12BF4BEE-261C-42B8-B2DC-D80262744AC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
260
|
+
{12BF4BEE-261C-42B8-B2DC-D80262744AC2}.Release|Any CPU.Build.0 = Release|Any CPU
|
261
|
+
{BE87F8A4-E216-40A7-86CF-153A15BAFEF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
262
|
+
{BE87F8A4-E216-40A7-86CF-153A15BAFEF8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
263
|
+
{BE87F8A4-E216-40A7-86CF-153A15BAFEF8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
264
|
+
{BE87F8A4-E216-40A7-86CF-153A15BAFEF8}.Release|Any CPU.Build.0 = Release|Any CPU
|
265
|
+
{1F8B6B66-7A58-4F84-9D3A-FB454D2CC3E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
266
|
+
{1F8B6B66-7A58-4F84-9D3A-FB454D2CC3E2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
267
|
+
{1F8B6B66-7A58-4F84-9D3A-FB454D2CC3E2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
268
|
+
{1F8B6B66-7A58-4F84-9D3A-FB454D2CC3E2}.Release|Any CPU.Build.0 = Release|Any CPU
|
269
|
+
{6FBC562A-7721-4846-81B6-D79D5AF576C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
270
|
+
{6FBC562A-7721-4846-81B6-D79D5AF576C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
271
|
+
{6FBC562A-7721-4846-81B6-D79D5AF576C5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
272
|
+
{6FBC562A-7721-4846-81B6-D79D5AF576C5}.Release|Any CPU.Build.0 = Release|Any CPU
|
273
|
+
{C8D01AEE-9AD9-4134-9721-3442C59702B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
274
|
+
{C8D01AEE-9AD9-4134-9721-3442C59702B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
275
|
+
{C8D01AEE-9AD9-4134-9721-3442C59702B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
276
|
+
{C8D01AEE-9AD9-4134-9721-3442C59702B2}.Release|Any CPU.Build.0 = Release|Any CPU
|
277
|
+
{F9175D9F-7602-4BE1-B565-EA723D0CDF0A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
278
|
+
{F9175D9F-7602-4BE1-B565-EA723D0CDF0A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
279
|
+
{F9175D9F-7602-4BE1-B565-EA723D0CDF0A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
280
|
+
{F9175D9F-7602-4BE1-B565-EA723D0CDF0A}.Release|Any CPU.Build.0 = Release|Any CPU
|
281
|
+
{CE0CA302-A594-422D-A215-E78F2F3AF0CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
282
|
+
{CE0CA302-A594-422D-A215-E78F2F3AF0CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
283
|
+
{CE0CA302-A594-422D-A215-E78F2F3AF0CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
284
|
+
{CE0CA302-A594-422D-A215-E78F2F3AF0CE}.Release|Any CPU.Build.0 = Release|Any CPU
|
285
|
+
{A9584773-6FD0-42CB-B94E-A61125C5C1E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
286
|
+
{A9584773-6FD0-42CB-B94E-A61125C5C1E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
287
|
+
{A9584773-6FD0-42CB-B94E-A61125C5C1E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
288
|
+
{A9584773-6FD0-42CB-B94E-A61125C5C1E7}.Release|Any CPU.Build.0 = Release|Any CPU
|
289
|
+
{31595C04-4C0E-4A72-90A1-054EE5C47BFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
290
|
+
{31595C04-4C0E-4A72-90A1-054EE5C47BFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
291
|
+
{31595C04-4C0E-4A72-90A1-054EE5C47BFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
292
|
+
{31595C04-4C0E-4A72-90A1-054EE5C47BFC}.Release|Any CPU.Build.0 = Release|Any CPU
|
293
|
+
{A3016178-CED9-4DDD-8FF4-03C420AD77B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
294
|
+
{A3016178-CED9-4DDD-8FF4-03C420AD77B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
295
|
+
{A3016178-CED9-4DDD-8FF4-03C420AD77B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
296
|
+
{A3016178-CED9-4DDD-8FF4-03C420AD77B9}.Release|Any CPU.Build.0 = Release|Any CPU
|
297
|
+
{D498F024-BA85-4543-88F9-1DCF239470C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
298
|
+
{D498F024-BA85-4543-88F9-1DCF239470C7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
299
|
+
{D498F024-BA85-4543-88F9-1DCF239470C7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
300
|
+
{D498F024-BA85-4543-88F9-1DCF239470C7}.Release|Any CPU.Build.0 = Release|Any CPU
|
301
|
+
{2C9B22CE-770A-400B-BD9B-287030CF12BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
302
|
+
{2C9B22CE-770A-400B-BD9B-287030CF12BB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
303
|
+
{2C9B22CE-770A-400B-BD9B-287030CF12BB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
304
|
+
{2C9B22CE-770A-400B-BD9B-287030CF12BB}.Release|Any CPU.Build.0 = Release|Any CPU
|
305
|
+
{A6151CB7-713E-43B0-A403-9C73F9936D4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
306
|
+
{A6151CB7-713E-43B0-A403-9C73F9936D4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
307
|
+
{A6151CB7-713E-43B0-A403-9C73F9936D4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
308
|
+
{A6151CB7-713E-43B0-A403-9C73F9936D4B}.Release|Any CPU.Build.0 = Release|Any CPU
|
309
|
+
{3ED88500-2825-4F24-81E6-C816FF89A5B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
310
|
+
{3ED88500-2825-4F24-81E6-C816FF89A5B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
311
|
+
{3ED88500-2825-4F24-81E6-C816FF89A5B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
312
|
+
{3ED88500-2825-4F24-81E6-C816FF89A5B5}.Release|Any CPU.Build.0 = Release|Any CPU
|
313
|
+
{93092B18-7447-4F06-AD46-FC7B39EC9E89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
314
|
+
{93092B18-7447-4F06-AD46-FC7B39EC9E89}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
315
|
+
{93092B18-7447-4F06-AD46-FC7B39EC9E89}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
316
|
+
{93092B18-7447-4F06-AD46-FC7B39EC9E89}.Release|Any CPU.Build.0 = Release|Any CPU
|
317
|
+
{07DA1459-6101-43E1-A1AF-48ABD8D62ADD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
318
|
+
{07DA1459-6101-43E1-A1AF-48ABD8D62ADD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
319
|
+
{07DA1459-6101-43E1-A1AF-48ABD8D62ADD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
320
|
+
{07DA1459-6101-43E1-A1AF-48ABD8D62ADD}.Release|Any CPU.Build.0 = Release|Any CPU
|
321
|
+
{58000112-543C-401E-9D1C-EBABC5A67A14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
322
|
+
{58000112-543C-401E-9D1C-EBABC5A67A14}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
323
|
+
{58000112-543C-401E-9D1C-EBABC5A67A14}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
324
|
+
{58000112-543C-401E-9D1C-EBABC5A67A14}.Release|Any CPU.Build.0 = Release|Any CPU
|
325
|
+
{99CCDA48-1CA3-46B9-89B8-0B45106304FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
326
|
+
{99CCDA48-1CA3-46B9-89B8-0B45106304FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
327
|
+
{99CCDA48-1CA3-46B9-89B8-0B45106304FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
328
|
+
{99CCDA48-1CA3-46B9-89B8-0B45106304FC}.Release|Any CPU.Build.0 = Release|Any CPU
|
329
|
+
{45A818E0-8CDF-44A5-B948-63D8DEB9982E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
330
|
+
{45A818E0-8CDF-44A5-B948-63D8DEB9982E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
331
|
+
{45A818E0-8CDF-44A5-B948-63D8DEB9982E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
332
|
+
{45A818E0-8CDF-44A5-B948-63D8DEB9982E}.Release|Any CPU.Build.0 = Release|Any CPU
|
333
|
+
{B341FE12-9233-4E34-8C1C-4E62AC2F8AE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
334
|
+
{B341FE12-9233-4E34-8C1C-4E62AC2F8AE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
335
|
+
{B341FE12-9233-4E34-8C1C-4E62AC2F8AE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
336
|
+
{B341FE12-9233-4E34-8C1C-4E62AC2F8AE1}.Release|Any CPU.Build.0 = Release|Any CPU
|
337
|
+
{B7E811DB-8575-4C77-9AF9-49DA840557C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
338
|
+
{B7E811DB-8575-4C77-9AF9-49DA840557C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
339
|
+
{B7E811DB-8575-4C77-9AF9-49DA840557C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
340
|
+
{B7E811DB-8575-4C77-9AF9-49DA840557C2}.Release|Any CPU.Build.0 = Release|Any CPU
|
341
|
+
{FD52020A-6F1E-42FA-81CE-1F6A8E7C9737}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
342
|
+
{FD52020A-6F1E-42FA-81CE-1F6A8E7C9737}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
343
|
+
{FD52020A-6F1E-42FA-81CE-1F6A8E7C9737}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
344
|
+
{FD52020A-6F1E-42FA-81CE-1F6A8E7C9737}.Release|Any CPU.Build.0 = Release|Any CPU
|
345
|
+
{FED33EF6-AC47-4E9A-B615-66B16B846E94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
346
|
+
{FED33EF6-AC47-4E9A-B615-66B16B846E94}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
347
|
+
{FED33EF6-AC47-4E9A-B615-66B16B846E94}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
348
|
+
{FED33EF6-AC47-4E9A-B615-66B16B846E94}.Release|Any CPU.Build.0 = Release|Any CPU
|
349
|
+
{ACB24C7C-C92D-43F9-B1B1-9444696DAD36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
350
|
+
{ACB24C7C-C92D-43F9-B1B1-9444696DAD36}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
351
|
+
{ACB24C7C-C92D-43F9-B1B1-9444696DAD36}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
352
|
+
{ACB24C7C-C92D-43F9-B1B1-9444696DAD36}.Release|Any CPU.Build.0 = Release|Any CPU
|
353
|
+
{2C8C5AE3-D04F-48F4-8AF5-D7535277B7A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
354
|
+
{2C8C5AE3-D04F-48F4-8AF5-D7535277B7A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
355
|
+
{2C8C5AE3-D04F-48F4-8AF5-D7535277B7A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
356
|
+
{2C8C5AE3-D04F-48F4-8AF5-D7535277B7A0}.Release|Any CPU.Build.0 = Release|Any CPU
|
357
|
+
{A5417213-F20A-4C06-9D8B-8688B0C4EE61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
358
|
+
{A5417213-F20A-4C06-9D8B-8688B0C4EE61}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
359
|
+
{A5417213-F20A-4C06-9D8B-8688B0C4EE61}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
360
|
+
{A5417213-F20A-4C06-9D8B-8688B0C4EE61}.Release|Any CPU.Build.0 = Release|Any CPU
|
361
|
+
{A03A743F-C645-45CB-80A0-BE10D2FC1A13}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
362
|
+
{A03A743F-C645-45CB-80A0-BE10D2FC1A13}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
363
|
+
{A03A743F-C645-45CB-80A0-BE10D2FC1A13}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
364
|
+
{A03A743F-C645-45CB-80A0-BE10D2FC1A13}.Release|Any CPU.Build.0 = Release|Any CPU
|
365
|
+
{29C6234D-5562-4495-A014-92388EE4518E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
366
|
+
{29C6234D-5562-4495-A014-92388EE4518E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
367
|
+
{29C6234D-5562-4495-A014-92388EE4518E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
368
|
+
{29C6234D-5562-4495-A014-92388EE4518E}.Release|Any CPU.Build.0 = Release|Any CPU
|
369
|
+
{4427F391-652B-4804-BED4-7CD0D218FE28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
370
|
+
{4427F391-652B-4804-BED4-7CD0D218FE28}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
371
|
+
{4427F391-652B-4804-BED4-7CD0D218FE28}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
372
|
+
{4427F391-652B-4804-BED4-7CD0D218FE28}.Release|Any CPU.Build.0 = Release|Any CPU
|
373
|
+
{61BAD6B6-3A48-4E9B-8333-F1884F68A0A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
374
|
+
{61BAD6B6-3A48-4E9B-8333-F1884F68A0A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
375
|
+
{61BAD6B6-3A48-4E9B-8333-F1884F68A0A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
376
|
+
{61BAD6B6-3A48-4E9B-8333-F1884F68A0A5}.Release|Any CPU.Build.0 = Release|Any CPU
|
377
|
+
{DE23A75D-E816-4988-BB2C-7EBEB5BEB6F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
378
|
+
{DE23A75D-E816-4988-BB2C-7EBEB5BEB6F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
379
|
+
{DE23A75D-E816-4988-BB2C-7EBEB5BEB6F1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
380
|
+
{DE23A75D-E816-4988-BB2C-7EBEB5BEB6F1}.Release|Any CPU.Build.0 = Release|Any CPU
|
381
|
+
{0CC90F16-9B6C-4C87-A49B-600DB3DF0D2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
382
|
+
{0CC90F16-9B6C-4C87-A49B-600DB3DF0D2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
383
|
+
{0CC90F16-9B6C-4C87-A49B-600DB3DF0D2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
384
|
+
{0CC90F16-9B6C-4C87-A49B-600DB3DF0D2A}.Release|Any CPU.Build.0 = Release|Any CPU
|
385
|
+
{4D68748B-6DEF-4E05-830C-43AF09B2CE8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
386
|
+
{4D68748B-6DEF-4E05-830C-43AF09B2CE8A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
387
|
+
{4D68748B-6DEF-4E05-830C-43AF09B2CE8A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
388
|
+
{4D68748B-6DEF-4E05-830C-43AF09B2CE8A}.Release|Any CPU.Build.0 = Release|Any CPU
|
389
|
+
{91CF9FC4-105B-4E21-8692-1D5E539E42E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
390
|
+
{91CF9FC4-105B-4E21-8692-1D5E539E42E9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
391
|
+
{91CF9FC4-105B-4E21-8692-1D5E539E42E9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
392
|
+
{91CF9FC4-105B-4E21-8692-1D5E539E42E9}.Release|Any CPU.Build.0 = Release|Any CPU
|
393
|
+
{D504C93E-AE1A-4852-9727-6E565632D38E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
394
|
+
{D504C93E-AE1A-4852-9727-6E565632D38E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
395
|
+
{D504C93E-AE1A-4852-9727-6E565632D38E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
396
|
+
{D504C93E-AE1A-4852-9727-6E565632D38E}.Release|Any CPU.Build.0 = Release|Any CPU
|
397
|
+
{1632128F-A60B-49B8-A5DB-05F3F1A3B84C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
398
|
+
{1632128F-A60B-49B8-A5DB-05F3F1A3B84C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
399
|
+
{1632128F-A60B-49B8-A5DB-05F3F1A3B84C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
400
|
+
{1632128F-A60B-49B8-A5DB-05F3F1A3B84C}.Release|Any CPU.Build.0 = Release|Any CPU
|
401
|
+
{8CA92DF0-3C60-4F23-9890-806744E1F514}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
402
|
+
{8CA92DF0-3C60-4F23-9890-806744E1F514}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
403
|
+
{8CA92DF0-3C60-4F23-9890-806744E1F514}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
404
|
+
{8CA92DF0-3C60-4F23-9890-806744E1F514}.Release|Any CPU.Build.0 = Release|Any CPU
|
405
|
+
{507ED1D4-F905-4AAD-897D-AD403FA56663}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
406
|
+
{507ED1D4-F905-4AAD-897D-AD403FA56663}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
407
|
+
{507ED1D4-F905-4AAD-897D-AD403FA56663}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
408
|
+
{507ED1D4-F905-4AAD-897D-AD403FA56663}.Release|Any CPU.Build.0 = Release|Any CPU
|
409
|
+
{C9ADF8BA-8239-4514-8906-A8E09A1A874C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
410
|
+
{C9ADF8BA-8239-4514-8906-A8E09A1A874C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
411
|
+
{C9ADF8BA-8239-4514-8906-A8E09A1A874C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
412
|
+
{C9ADF8BA-8239-4514-8906-A8E09A1A874C}.Release|Any CPU.Build.0 = Release|Any CPU
|
413
|
+
{7370EDAC-0F7C-4008-A8C6-8C6240EE518E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
414
|
+
{7370EDAC-0F7C-4008-A8C6-8C6240EE518E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
415
|
+
{7370EDAC-0F7C-4008-A8C6-8C6240EE518E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
416
|
+
{7370EDAC-0F7C-4008-A8C6-8C6240EE518E}.Release|Any CPU.Build.0 = Release|Any CPU
|
417
|
+
{6B934B23-6A75-42FC-9B6C-B3F4CFA6673F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
418
|
+
{6B934B23-6A75-42FC-9B6C-B3F4CFA6673F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
419
|
+
{6B934B23-6A75-42FC-9B6C-B3F4CFA6673F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
420
|
+
{6B934B23-6A75-42FC-9B6C-B3F4CFA6673F}.Release|Any CPU.Build.0 = Release|Any CPU
|
421
|
+
{AFA39C3B-C0A0-445C-8129-4DFD3009B56E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
422
|
+
{AFA39C3B-C0A0-445C-8129-4DFD3009B56E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
423
|
+
{AFA39C3B-C0A0-445C-8129-4DFD3009B56E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
424
|
+
{AFA39C3B-C0A0-445C-8129-4DFD3009B56E}.Release|Any CPU.Build.0 = Release|Any CPU
|
425
|
+
{BCC05EA8-DB49-4684-9888-1B8688BE3FA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
426
|
+
{BCC05EA8-DB49-4684-9888-1B8688BE3FA6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
427
|
+
{BCC05EA8-DB49-4684-9888-1B8688BE3FA6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
428
|
+
{BCC05EA8-DB49-4684-9888-1B8688BE3FA6}.Release|Any CPU.Build.0 = Release|Any CPU
|
429
|
+
{87FCABD0-2762-464E-9489-415E95D12427}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
430
|
+
{87FCABD0-2762-464E-9489-415E95D12427}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
431
|
+
{87FCABD0-2762-464E-9489-415E95D12427}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
432
|
+
{87FCABD0-2762-464E-9489-415E95D12427}.Release|Any CPU.Build.0 = Release|Any CPU
|
433
|
+
{C84E079F-9790-425A-9C86-C69122811E6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
434
|
+
{C84E079F-9790-425A-9C86-C69122811E6F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
435
|
+
{C84E079F-9790-425A-9C86-C69122811E6F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
436
|
+
{C84E079F-9790-425A-9C86-C69122811E6F}.Release|Any CPU.Build.0 = Release|Any CPU
|
437
|
+
{F437861F-4FF8-418E-B205-FB04D23E0312}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
438
|
+
{F437861F-4FF8-418E-B205-FB04D23E0312}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
439
|
+
{F437861F-4FF8-418E-B205-FB04D23E0312}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
440
|
+
{F437861F-4FF8-418E-B205-FB04D23E0312}.Release|Any CPU.Build.0 = Release|Any CPU
|
441
|
+
{6A9E4125-03D1-4DAF-8333-336C49360621}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
442
|
+
{6A9E4125-03D1-4DAF-8333-336C49360621}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
443
|
+
{6A9E4125-03D1-4DAF-8333-336C49360621}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
444
|
+
{6A9E4125-03D1-4DAF-8333-336C49360621}.Release|Any CPU.Build.0 = Release|Any CPU
|
445
|
+
{1BA7884A-3D6F-4479-A0F9-44385662FE24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
446
|
+
{1BA7884A-3D6F-4479-A0F9-44385662FE24}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
447
|
+
{1BA7884A-3D6F-4479-A0F9-44385662FE24}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
448
|
+
{1BA7884A-3D6F-4479-A0F9-44385662FE24}.Release|Any CPU.Build.0 = Release|Any CPU
|
449
|
+
{FBE7E7D4-EBF1-4B0C-B63E-540DA1C9CEAA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
450
|
+
{FBE7E7D4-EBF1-4B0C-B63E-540DA1C9CEAA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
451
|
+
{FBE7E7D4-EBF1-4B0C-B63E-540DA1C9CEAA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
452
|
+
{FBE7E7D4-EBF1-4B0C-B63E-540DA1C9CEAA}.Release|Any CPU.Build.0 = Release|Any CPU
|
453
|
+
{7E047279-FD70-440F-8FB9-B47E88747EF4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
454
|
+
{7E047279-FD70-440F-8FB9-B47E88747EF4}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
455
|
+
{7E047279-FD70-440F-8FB9-B47E88747EF4}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
456
|
+
{7E047279-FD70-440F-8FB9-B47E88747EF4}.Release|Any CPU.Build.0 = Release|Any CPU
|
457
|
+
{A60E1C9A-6E52-42F7-ACA2-BB58DA64361E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
458
|
+
{A60E1C9A-6E52-42F7-ACA2-BB58DA64361E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
459
|
+
{A60E1C9A-6E52-42F7-ACA2-BB58DA64361E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
460
|
+
{A60E1C9A-6E52-42F7-ACA2-BB58DA64361E}.Release|Any CPU.Build.0 = Release|Any CPU
|
461
|
+
{427A9EFA-5E06-4176-A287-0DC0E0CD3E86}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
462
|
+
{427A9EFA-5E06-4176-A287-0DC0E0CD3E86}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
463
|
+
{427A9EFA-5E06-4176-A287-0DC0E0CD3E86}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
464
|
+
{427A9EFA-5E06-4176-A287-0DC0E0CD3E86}.Release|Any CPU.Build.0 = Release|Any CPU
|
465
|
+
{4B864ACE-495C-46FB-870F-4D794C02C8F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
466
|
+
{4B864ACE-495C-46FB-870F-4D794C02C8F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
467
|
+
{4B864ACE-495C-46FB-870F-4D794C02C8F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
468
|
+
{4B864ACE-495C-46FB-870F-4D794C02C8F9}.Release|Any CPU.Build.0 = Release|Any CPU
|
469
|
+
{17419CBD-2AC6-479F-ACA7-D478F9FBF397}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
470
|
+
{17419CBD-2AC6-479F-ACA7-D478F9FBF397}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
471
|
+
{17419CBD-2AC6-479F-ACA7-D478F9FBF397}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
472
|
+
{17419CBD-2AC6-479F-ACA7-D478F9FBF397}.Release|Any CPU.Build.0 = Release|Any CPU
|
473
|
+
{03856292-CE47-45EE-91D4-6ACF27E1925F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
474
|
+
{03856292-CE47-45EE-91D4-6ACF27E1925F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
475
|
+
{03856292-CE47-45EE-91D4-6ACF27E1925F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
476
|
+
{03856292-CE47-45EE-91D4-6ACF27E1925F}.Release|Any CPU.Build.0 = Release|Any CPU
|
477
|
+
{762A1A84-4B1E-49A1-BC58-4988BB489F7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
478
|
+
{762A1A84-4B1E-49A1-BC58-4988BB489F7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
479
|
+
{762A1A84-4B1E-49A1-BC58-4988BB489F7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
480
|
+
{762A1A84-4B1E-49A1-BC58-4988BB489F7C}.Release|Any CPU.Build.0 = Release|Any CPU
|
481
|
+
{3B42D204-BFB1-456F-B5F5-9421EECE465A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
482
|
+
{3B42D204-BFB1-456F-B5F5-9421EECE465A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
483
|
+
{3B42D204-BFB1-456F-B5F5-9421EECE465A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
484
|
+
{3B42D204-BFB1-456F-B5F5-9421EECE465A}.Release|Any CPU.Build.0 = Release|Any CPU
|
485
|
+
{F8BC96E4-15E2-4F64-9D25-E167EC207404}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
486
|
+
{F8BC96E4-15E2-4F64-9D25-E167EC207404}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
487
|
+
{F8BC96E4-15E2-4F64-9D25-E167EC207404}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
488
|
+
{F8BC96E4-15E2-4F64-9D25-E167EC207404}.Release|Any CPU.Build.0 = Release|Any CPU
|
489
|
+
{A2EB7FD7-7660-4297-B431-9833CB65A848}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
490
|
+
{A2EB7FD7-7660-4297-B431-9833CB65A848}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
491
|
+
{A2EB7FD7-7660-4297-B431-9833CB65A848}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
492
|
+
{A2EB7FD7-7660-4297-B431-9833CB65A848}.Release|Any CPU.Build.0 = Release|Any CPU
|
493
|
+
{086D5907-AAF8-4488-A2AD-4A3430D74FAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
494
|
+
{086D5907-AAF8-4488-A2AD-4A3430D74FAB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
495
|
+
{086D5907-AAF8-4488-A2AD-4A3430D74FAB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
496
|
+
{086D5907-AAF8-4488-A2AD-4A3430D74FAB}.Release|Any CPU.Build.0 = Release|Any CPU
|
497
|
+
{6ACF8F5B-B1E1-439B-AFFF-42D6B143760E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
498
|
+
{6ACF8F5B-B1E1-439B-AFFF-42D6B143760E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
499
|
+
{6ACF8F5B-B1E1-439B-AFFF-42D6B143760E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
500
|
+
{6ACF8F5B-B1E1-439B-AFFF-42D6B143760E}.Release|Any CPU.Build.0 = Release|Any CPU
|
501
|
+
{50FB388F-6D68-400C-A919-0414B87466A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
502
|
+
{50FB388F-6D68-400C-A919-0414B87466A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
503
|
+
{50FB388F-6D68-400C-A919-0414B87466A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
504
|
+
{50FB388F-6D68-400C-A919-0414B87466A7}.Release|Any CPU.Build.0 = Release|Any CPU
|
505
|
+
{F1957BE5-4CA4-494B-A62B-AA4F5E4D460A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
506
|
+
{F1957BE5-4CA4-494B-A62B-AA4F5E4D460A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
507
|
+
{F1957BE5-4CA4-494B-A62B-AA4F5E4D460A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
508
|
+
{F1957BE5-4CA4-494B-A62B-AA4F5E4D460A}.Release|Any CPU.Build.0 = Release|Any CPU
|
509
|
+
{F2077E7E-7305-4FC7-8D67-D90037B3F370}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
510
|
+
{F2077E7E-7305-4FC7-8D67-D90037B3F370}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
511
|
+
{F2077E7E-7305-4FC7-8D67-D90037B3F370}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
512
|
+
{F2077E7E-7305-4FC7-8D67-D90037B3F370}.Release|Any CPU.Build.0 = Release|Any CPU
|
513
|
+
{3A3D27B8-10FE-4E72-A3CE-183EBC11503B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
514
|
+
{3A3D27B8-10FE-4E72-A3CE-183EBC11503B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
515
|
+
{3A3D27B8-10FE-4E72-A3CE-183EBC11503B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
516
|
+
{3A3D27B8-10FE-4E72-A3CE-183EBC11503B}.Release|Any CPU.Build.0 = Release|Any CPU
|
517
|
+
{A8777E05-E344-4673-915B-E9224002C423}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
518
|
+
{A8777E05-E344-4673-915B-E9224002C423}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
519
|
+
{A8777E05-E344-4673-915B-E9224002C423}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
520
|
+
{A8777E05-E344-4673-915B-E9224002C423}.Release|Any CPU.Build.0 = Release|Any CPU
|
521
|
+
{05B08A0C-5BCA-4FF6-9C42-9DFF5E7DCDEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
522
|
+
{05B08A0C-5BCA-4FF6-9C42-9DFF5E7DCDEA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
523
|
+
{05B08A0C-5BCA-4FF6-9C42-9DFF5E7DCDEA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
524
|
+
{05B08A0C-5BCA-4FF6-9C42-9DFF5E7DCDEA}.Release|Any CPU.Build.0 = Release|Any CPU
|
525
|
+
{C9CFE66E-6921-4CCE-83A7-D5B54812122F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
526
|
+
{C9CFE66E-6921-4CCE-83A7-D5B54812122F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
527
|
+
{C9CFE66E-6921-4CCE-83A7-D5B54812122F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
528
|
+
{C9CFE66E-6921-4CCE-83A7-D5B54812122F}.Release|Any CPU.Build.0 = Release|Any CPU
|
529
|
+
{A0FD4472-99E5-4FBC-A6A7-20786EA167DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
530
|
+
{A0FD4472-99E5-4FBC-A6A7-20786EA167DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
531
|
+
{A0FD4472-99E5-4FBC-A6A7-20786EA167DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
532
|
+
{A0FD4472-99E5-4FBC-A6A7-20786EA167DF}.Release|Any CPU.Build.0 = Release|Any CPU
|
533
|
+
{86272012-C994-41F7-BFAF-4BED50797B22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
534
|
+
{86272012-C994-41F7-BFAF-4BED50797B22}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
535
|
+
{86272012-C994-41F7-BFAF-4BED50797B22}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
536
|
+
{86272012-C994-41F7-BFAF-4BED50797B22}.Release|Any CPU.Build.0 = Release|Any CPU
|
537
|
+
{94B89563-1E74-42F9-96A5-19CD800AFECB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
538
|
+
{94B89563-1E74-42F9-96A5-19CD800AFECB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
539
|
+
{94B89563-1E74-42F9-96A5-19CD800AFECB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
540
|
+
{94B89563-1E74-42F9-96A5-19CD800AFECB}.Release|Any CPU.Build.0 = Release|Any CPU
|
541
|
+
{E5D2964E-CFE9-4DE6-99B5-1F54F9984F65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
542
|
+
{E5D2964E-CFE9-4DE6-99B5-1F54F9984F65}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
543
|
+
{E5D2964E-CFE9-4DE6-99B5-1F54F9984F65}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
544
|
+
{E5D2964E-CFE9-4DE6-99B5-1F54F9984F65}.Release|Any CPU.Build.0 = Release|Any CPU
|
545
|
+
{C92F8E81-6FB1-46FF-9B68-2D126F8903E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
546
|
+
{C92F8E81-6FB1-46FF-9B68-2D126F8903E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
547
|
+
{C92F8E81-6FB1-46FF-9B68-2D126F8903E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
548
|
+
{C92F8E81-6FB1-46FF-9B68-2D126F8903E6}.Release|Any CPU.Build.0 = Release|Any CPU
|
549
|
+
{B9207BE6-2577-4C49-AF5F-130A17BBEA73}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
550
|
+
{B9207BE6-2577-4C49-AF5F-130A17BBEA73}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
551
|
+
{B9207BE6-2577-4C49-AF5F-130A17BBEA73}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
552
|
+
{B9207BE6-2577-4C49-AF5F-130A17BBEA73}.Release|Any CPU.Build.0 = Release|Any CPU
|
553
|
+
{40C19FFA-E1E1-4589-86E4-B7BEF336CE79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
554
|
+
{40C19FFA-E1E1-4589-86E4-B7BEF336CE79}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
555
|
+
{40C19FFA-E1E1-4589-86E4-B7BEF336CE79}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
556
|
+
{40C19FFA-E1E1-4589-86E4-B7BEF336CE79}.Release|Any CPU.Build.0 = Release|Any CPU
|
557
|
+
{64324C38-03F7-4624-8F00-B85183DDBF99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
558
|
+
{64324C38-03F7-4624-8F00-B85183DDBF99}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
559
|
+
{64324C38-03F7-4624-8F00-B85183DDBF99}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
560
|
+
{64324C38-03F7-4624-8F00-B85183DDBF99}.Release|Any CPU.Build.0 = Release|Any CPU
|
561
|
+
{14C24193-D5E0-4D29-B270-C27B43CC1925}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
562
|
+
{14C24193-D5E0-4D29-B270-C27B43CC1925}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
563
|
+
{14C24193-D5E0-4D29-B270-C27B43CC1925}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
564
|
+
{14C24193-D5E0-4D29-B270-C27B43CC1925}.Release|Any CPU.Build.0 = Release|Any CPU
|
565
|
+
{B25208A4-3C80-411E-A36A-7BC4AA506DC7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
566
|
+
{B25208A4-3C80-411E-A36A-7BC4AA506DC7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
567
|
+
{B25208A4-3C80-411E-A36A-7BC4AA506DC7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
568
|
+
{B25208A4-3C80-411E-A36A-7BC4AA506DC7}.Release|Any CPU.Build.0 = Release|Any CPU
|
569
|
+
{2A56B16C-3980-4380-84E8-B20DEEEFB5D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
570
|
+
{2A56B16C-3980-4380-84E8-B20DEEEFB5D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
571
|
+
{2A56B16C-3980-4380-84E8-B20DEEEFB5D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
572
|
+
{2A56B16C-3980-4380-84E8-B20DEEEFB5D6}.Release|Any CPU.Build.0 = Release|Any CPU
|
573
|
+
{269971FF-B748-4B95-8507-534C229A60B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
574
|
+
{269971FF-B748-4B95-8507-534C229A60B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
575
|
+
{269971FF-B748-4B95-8507-534C229A60B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
576
|
+
{269971FF-B748-4B95-8507-534C229A60B9}.Release|Any CPU.Build.0 = Release|Any CPU
|
577
|
+
{F6244150-1AD9-470E-B0F0-72389B10639E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
578
|
+
{F6244150-1AD9-470E-B0F0-72389B10639E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
579
|
+
{F6244150-1AD9-470E-B0F0-72389B10639E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
580
|
+
{F6244150-1AD9-470E-B0F0-72389B10639E}.Release|Any CPU.Build.0 = Release|Any CPU
|
581
|
+
{D1102F23-265A-4CA8-975C-75564DFFAA04}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
582
|
+
{D1102F23-265A-4CA8-975C-75564DFFAA04}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
583
|
+
{D1102F23-265A-4CA8-975C-75564DFFAA04}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
584
|
+
{D1102F23-265A-4CA8-975C-75564DFFAA04}.Release|Any CPU.Build.0 = Release|Any CPU
|
585
|
+
{F4C5ECB6-2C17-4BC9-BF8F-BA9117BD2843}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
586
|
+
{F4C5ECB6-2C17-4BC9-BF8F-BA9117BD2843}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
587
|
+
{F4C5ECB6-2C17-4BC9-BF8F-BA9117BD2843}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
588
|
+
{F4C5ECB6-2C17-4BC9-BF8F-BA9117BD2843}.Release|Any CPU.Build.0 = Release|Any CPU
|
589
|
+
{B9C4BF5F-2D56-4B06-A1EE-1E1CC642D14B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
590
|
+
{B9C4BF5F-2D56-4B06-A1EE-1E1CC642D14B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
591
|
+
{B9C4BF5F-2D56-4B06-A1EE-1E1CC642D14B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
592
|
+
{B9C4BF5F-2D56-4B06-A1EE-1E1CC642D14B}.Release|Any CPU.Build.0 = Release|Any CPU
|
593
|
+
{6CE987BF-9677-476C-8BB9-1BE7CC16F932}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
594
|
+
{6CE987BF-9677-476C-8BB9-1BE7CC16F932}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
595
|
+
{6CE987BF-9677-476C-8BB9-1BE7CC16F932}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
596
|
+
{6CE987BF-9677-476C-8BB9-1BE7CC16F932}.Release|Any CPU.Build.0 = Release|Any CPU
|
597
|
+
{BD63E691-0A53-46CE-B687-E3CD95F1D4B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
598
|
+
{BD63E691-0A53-46CE-B687-E3CD95F1D4B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
599
|
+
{BD63E691-0A53-46CE-B687-E3CD95F1D4B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
600
|
+
{BD63E691-0A53-46CE-B687-E3CD95F1D4B1}.Release|Any CPU.Build.0 = Release|Any CPU
|
601
|
+
{FCF9AB0E-4310-4BCB-8682-833450658B97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
602
|
+
{FCF9AB0E-4310-4BCB-8682-833450658B97}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
603
|
+
{FCF9AB0E-4310-4BCB-8682-833450658B97}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
604
|
+
{FCF9AB0E-4310-4BCB-8682-833450658B97}.Release|Any CPU.Build.0 = Release|Any CPU
|
605
|
+
{607AB17F-1305-4002-A980-DB60699688F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
606
|
+
{607AB17F-1305-4002-A980-DB60699688F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
607
|
+
{607AB17F-1305-4002-A980-DB60699688F1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
608
|
+
{607AB17F-1305-4002-A980-DB60699688F1}.Release|Any CPU.Build.0 = Release|Any CPU
|
609
|
+
{128B3A5D-E28C-4C7F-8B16-3202D0F73A00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
610
|
+
{128B3A5D-E28C-4C7F-8B16-3202D0F73A00}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
611
|
+
{128B3A5D-E28C-4C7F-8B16-3202D0F73A00}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
612
|
+
{128B3A5D-E28C-4C7F-8B16-3202D0F73A00}.Release|Any CPU.Build.0 = Release|Any CPU
|
613
|
+
{B98F63AB-F0C8-4594-98BD-0BBBAEA4C4E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
614
|
+
{B98F63AB-F0C8-4594-98BD-0BBBAEA4C4E9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
615
|
+
{B98F63AB-F0C8-4594-98BD-0BBBAEA4C4E9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
616
|
+
{B98F63AB-F0C8-4594-98BD-0BBBAEA4C4E9}.Release|Any CPU.Build.0 = Release|Any CPU
|
617
|
+
{62EBA4E5-BD13-4F7C-85E6-65D633B3FB6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
618
|
+
{62EBA4E5-BD13-4F7C-85E6-65D633B3FB6C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
619
|
+
{62EBA4E5-BD13-4F7C-85E6-65D633B3FB6C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
620
|
+
{62EBA4E5-BD13-4F7C-85E6-65D633B3FB6C}.Release|Any CPU.Build.0 = Release|Any CPU
|
621
|
+
{DFE95B37-24F5-417A-8C3F-788255CE8A04}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
622
|
+
{DFE95B37-24F5-417A-8C3F-788255CE8A04}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
623
|
+
{DFE95B37-24F5-417A-8C3F-788255CE8A04}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
624
|
+
{DFE95B37-24F5-417A-8C3F-788255CE8A04}.Release|Any CPU.Build.0 = Release|Any CPU
|
625
|
+
{77E253C3-5FCE-45A4-B285-BE24945E0D70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
626
|
+
{77E253C3-5FCE-45A4-B285-BE24945E0D70}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
627
|
+
{77E253C3-5FCE-45A4-B285-BE24945E0D70}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
628
|
+
{77E253C3-5FCE-45A4-B285-BE24945E0D70}.Release|Any CPU.Build.0 = Release|Any CPU
|
629
|
+
{32ECF281-6D99-42D4-AD00-C8B56A8270F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
630
|
+
{32ECF281-6D99-42D4-AD00-C8B56A8270F8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
631
|
+
{32ECF281-6D99-42D4-AD00-C8B56A8270F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
632
|
+
{32ECF281-6D99-42D4-AD00-C8B56A8270F8}.Release|Any CPU.Build.0 = Release|Any CPU
|
633
|
+
{2EBD1C45-9D80-413A-9BE8-4ECB43C06843}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
634
|
+
{2EBD1C45-9D80-413A-9BE8-4ECB43C06843}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
635
|
+
{2EBD1C45-9D80-413A-9BE8-4ECB43C06843}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
636
|
+
{2EBD1C45-9D80-413A-9BE8-4ECB43C06843}.Release|Any CPU.Build.0 = Release|Any CPU
|
637
|
+
{79198D56-C3F2-49D6-B8BF-5BB674B6F7A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
638
|
+
{79198D56-C3F2-49D6-B8BF-5BB674B6F7A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
639
|
+
{79198D56-C3F2-49D6-B8BF-5BB674B6F7A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
640
|
+
{79198D56-C3F2-49D6-B8BF-5BB674B6F7A2}.Release|Any CPU.Build.0 = Release|Any CPU
|
641
|
+
{83504141-FF2A-427E-8A51-9FA0E9037A78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
642
|
+
{83504141-FF2A-427E-8A51-9FA0E9037A78}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
643
|
+
{83504141-FF2A-427E-8A51-9FA0E9037A78}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
644
|
+
{83504141-FF2A-427E-8A51-9FA0E9037A78}.Release|Any CPU.Build.0 = Release|Any CPU
|
645
|
+
{DF67FD2D-4897-43C5-A93E-7CCADBB29E75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
646
|
+
{DF67FD2D-4897-43C5-A93E-7CCADBB29E75}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
647
|
+
{DF67FD2D-4897-43C5-A93E-7CCADBB29E75}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
648
|
+
{DF67FD2D-4897-43C5-A93E-7CCADBB29E75}.Release|Any CPU.Build.0 = Release|Any CPU
|
649
|
+
{4B862F51-054D-467F-971D-8A7B72F5B498}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
650
|
+
{4B862F51-054D-467F-971D-8A7B72F5B498}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
651
|
+
{4B862F51-054D-467F-971D-8A7B72F5B498}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
652
|
+
{4B862F51-054D-467F-971D-8A7B72F5B498}.Release|Any CPU.Build.0 = Release|Any CPU
|
653
|
+
{05EF2C70-B5B0-4351-B940-041A03A6BB84}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
654
|
+
{05EF2C70-B5B0-4351-B940-041A03A6BB84}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
655
|
+
{05EF2C70-B5B0-4351-B940-041A03A6BB84}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
656
|
+
{05EF2C70-B5B0-4351-B940-041A03A6BB84}.Release|Any CPU.Build.0 = Release|Any CPU
|
657
|
+
{18BC2EE7-E798-40DE-A346-0B803137E67D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
658
|
+
{18BC2EE7-E798-40DE-A346-0B803137E67D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
659
|
+
{18BC2EE7-E798-40DE-A346-0B803137E67D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
660
|
+
{18BC2EE7-E798-40DE-A346-0B803137E67D}.Release|Any CPU.Build.0 = Release|Any CPU
|
661
|
+
{D0399EAC-5563-4234-9828-0C607BAF7623}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
662
|
+
{D0399EAC-5563-4234-9828-0C607BAF7623}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
663
|
+
{D0399EAC-5563-4234-9828-0C607BAF7623}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
664
|
+
{D0399EAC-5563-4234-9828-0C607BAF7623}.Release|Any CPU.Build.0 = Release|Any CPU
|
665
|
+
EndGlobalSection
|
666
|
+
GlobalSection(SolutionProperties) = preSolution
|
667
|
+
HideSolutionNode = FALSE
|
668
|
+
EndGlobalSection
|
669
|
+
EndGlobal
|