From: Sean Gillespie Date: Fri, 29 Apr 2016 00:03:51 +0000 (-0700) Subject: GCSimulator test run X-Git-Tag: accepted/tizen/base/20180629.140029~4815^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=87b1d117ed005e0719e857b10d2be92436ba999b;p=platform%2Fupstream%2Fcoreclr.git GCSimulator test run --- diff --git a/netci.groovy b/netci.groovy index 6d0efa0..2461535 100755 --- a/netci.groovy +++ b/netci.groovy @@ -68,7 +68,7 @@ class Constants { 'gcstress0xc_minopts_heapverify1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JITMinOpts' : '1', 'COMPlus_HeapVerify' : '1'] ] // This is the basic set of scenarios - def static basicScenarios = ['default', 'pri1', 'ilrt', 'r2r', 'pri1r2r', 'gcstress15_pri1r2r', 'longgc', 'coverage'] + def static basicScenarios = ['default', 'pri1', 'ilrt', 'r2r', 'pri1r2r', 'gcstress15_pri1r2r', 'longgc', 'coverage', 'gcsimulator'] // This is the set of configurations def static configurationList = ['Debug', 'Checked', 'Release'] // This is the set of architectures @@ -116,6 +116,10 @@ def static isCoverage(def scenario) { return (scenario == 'coverage') } +def static isLongGc(def scenario) { + return (scenario == 'longgc' || scenario == 'gcsimulator') +} + def static setTestJobTimeOut(newJob, scenario) { if (isGCStressRelatedTesting(scenario)) { Utilities.setJobTimeout(newJob, 1440) @@ -363,6 +367,9 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, Utilities.addPeriodicTrigger(job, '@daily') addEmailPublisher(job, 'dotnetgctests@microsoft.com') break + case 'gcsimulator': + // GCSimulator is currently only triggered by PR + break case 'ilrt': assert !(os in bidailyCrossList) // ILASM/ILDASM roundtrip one gets a daily build, and only for release @@ -512,6 +519,11 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*") } break + case 'gcsimulator': + if (configuration == 'Release') { + Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*") + } + break case 'minopts': assert (os == 'Windows_NT') || (os in Constants.crossList) Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - MinOpts)", @@ -674,6 +686,11 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*") } break + case 'gcsimulator': + if (configuration == 'Release') { + Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*") + } + break case 'minopts': assert (os == 'Windows_NT') || (os in Constants.crossList) Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - MinOpts)", @@ -826,7 +843,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, } break case 'x86': - assert (scenario == 'default' || scenario == 'r2r' || scenario == 'pri1r2r' || scenario == 'gcstress15_pri1r2r' || scenario == 'longgc') + assert (scenario == 'default' || scenario == 'r2r' || scenario == 'pri1r2r' || scenario == 'gcstress15_pri1r2r' || scenario == 'longgc' || scenario == 'gcsimulator') // For windows, x86 runs by default if (scenario == 'default') { if (os == 'Windows_NT') { @@ -859,13 +876,21 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GCStress 15 R2R pri1 Build & Test", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*") } } - } else if (scenario == 'longgc') { + } + else if (scenario == 'longgc') { if (os == 'Windows_NT'){ if (configuration == 'Release'){ Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*") } } } + else if (scenario == 'gcsimulator') { + if (os == 'Windows_NT') { + if (configuration == 'Release') { + Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*") + } + } + } break default: println("Unknown architecture: ${architecture}"); @@ -1012,6 +1037,7 @@ combinedScenarios.each { scenario -> } break case 'longgc': + case 'gcsimulator': if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX') { return } @@ -1103,6 +1129,10 @@ combinedScenarios.each { scenario -> buildCommands += "build.cmd ${lowerConfiguration} ${architecture} skiptests" buildCommands += "set __TestIntermediateDir=int&&tests\\buildtest.cmd ${lowerConfiguration} ${architecture} longgctests" } + else if (scenario == 'gcsimulator') { + buildCommands += "build.cmd ${lowerConfiguration} ${architecture} skiptests" + buildCommands += "set __TestIntermediateDir=int&&tests\\buildtest.cmd ${lowerConfiguration} ${architecture} gcsimulator" + } else if (scenario == 'coverage') { buildCommands += "build.cmd ${lowerConfiguration} ${architecture} skiptests" buildCommands += "set __TestIntermediateDir=int&&tests\\buildtest.cmd ${lowerConfiguration} ${architecture} crossgen Priority 1" @@ -1145,15 +1175,15 @@ combinedScenarios.each { scenario -> } } else if (architecture == 'x64') { - if (scenario == 'longgc') { - buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture} longgctests sequential Exclude0" + if (isLongGc(scenario)) { + buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture} longgctests sequential" } else { buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture}" } } else if (architecture == 'x86') { - if (scenario == 'longgc') { - buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture} longgctests sequential Exclude0" + if (isLongGc(scenario)) { + buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture} longgctests sequential" } else { buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture} Exclude0 x86_legacy_backend_issues.targets" } @@ -1441,6 +1471,7 @@ combinedScenarios.each { scenario -> } break case 'longgc': + case 'gcsimulator': // Long GC tests take a long time on non-Release builds if (configuration != 'Release') { return @@ -1507,14 +1538,20 @@ combinedScenarios.each { scenario -> crossgenStr = '--crossgen' } - if (scenario == 'longgc') { + if (isLongGc(scenario)) { // Long GC tests behave very poorly when they are not // the only test running (many of them allocate until OOM). sequentialString = '--sequential' // The Long GC playlist contains all of the tests that are - // going to be run. - playlistString = '--playlist=./tests/longRunningGcTests.txt' + // going to be run. The GCSimulator playlist contains all of + // the GC simulator tests. + if (scenario == 'longgc') { + playlistString = '--playlist=./tests/longRunningGcTests.txt' + } + else if (scenario == 'gcsimulator') { + playlistString = '--playlist=./tests/gcSimulatorTests.txt' + } } diff --git a/tests/buildtest.cmd b/tests/buildtest.cmd index 8f23e82..fc8d089 100644 --- a/tests/buildtest.cmd +++ b/tests/buildtest.cmd @@ -32,6 +32,7 @@ set __ILAsmRoundtrip= set __BuildSequential= set __TestPriority= set __LongGCTests= +set __GCSimulatorTests= set __msbuildCleanBuildArgs= set __msbuildExtraArgs= set __verbosity=normal @@ -67,6 +68,7 @@ if /i "%1" == "sequential" (set __BuildSequential=1&shift&goto Arg_Loop if /i "%1" == "priority" (set __TestPriority=%2&shift&shift&goto Arg_Loop) if /i "%1" == "gcstresslevel" (set __GCStressLevel=%2&shift&shift&goto Arg_Loop) if /i "%1" == "longgctests" (set __LongGCTests=1&shift&goto Arg_Loop) +if /i "%1" == "gcsimulator" (set __GCSimulatorTests=1&shift&goto Arg_Loop) if /i "%1" == "verbose" (set __verbosity=detailed&shift&goto Arg_Loop) @@ -282,6 +284,11 @@ if defined __LongGCTests ( set __msbuildManagedBuildArgs=%__msbuildManagedBuildArgs% /p:GCLongRunning=true ) +if defined __GCSimulatorTests ( + echo Building GCSimulator tests + set __msbuildManagedBuildArgs=%__msbuildManagedBuildArgs% /p:GCSimulatorRun=true +) + set __BuildLogRootName=Tests_Managed call :msbuild "%__ProjectFilesDir%\build.proj" %__msbuildManagedBuildArgs% if errorlevel 1 exit /b 1 @@ -367,6 +374,8 @@ echo priority ^ : specify a set of test that will be built and run, with pri echo gcstresslevel ^ : specify the GCStress level the tests should run under. echo sequential: force a non-parallel build ^(default is to build in parallel echo using all processors^). +echo longgctests: Build tests so that runtests.cmd will do a long-running GC test. +echo gcsimulator: Build tests so that runtests.cmd will do a GCSimulator test run. echo IlasmRoundTrip: enables ilasm round trip build and run of the tests before executing them. echo verbose: enables detailed file logging for the msbuild tasks into the msbuild log file. exit /b 1 diff --git a/tests/gcSimulatorTests.txt b/tests/gcSimulatorTests.txt new file mode 100644 index 0000000..17eaf37 --- /dev/null +++ b/tests/gcSimulatorTests.txt @@ -0,0 +1,432 @@ +GC/Scenarios/GCSimulator/GCSimulator_100/GCSimulator_100.sh +GC/Scenarios/GCSimulator/GCSimulator_101/GCSimulator_101.sh +GC/Scenarios/GCSimulator/GCSimulator_102/GCSimulator_102.sh +GC/Scenarios/GCSimulator/GCSimulator_103/GCSimulator_103.sh +GC/Scenarios/GCSimulator/GCSimulator_104/GCSimulator_104.sh +GC/Scenarios/GCSimulator/GCSimulator_105/GCSimulator_105.sh +GC/Scenarios/GCSimulator/GCSimulator_106/GCSimulator_106.sh +GC/Scenarios/GCSimulator/GCSimulator_107/GCSimulator_107.sh +GC/Scenarios/GCSimulator/GCSimulator_108/GCSimulator_108.sh +GC/Scenarios/GCSimulator/GCSimulator_109/GCSimulator_109.sh +GC/Scenarios/GCSimulator/GCSimulator_10/GCSimulator_10.sh +GC/Scenarios/GCSimulator/GCSimulator_110/GCSimulator_110.sh +GC/Scenarios/GCSimulator/GCSimulator_111/GCSimulator_111.sh +GC/Scenarios/GCSimulator/GCSimulator_112/GCSimulator_112.sh +GC/Scenarios/GCSimulator/GCSimulator_113/GCSimulator_113.sh +GC/Scenarios/GCSimulator/GCSimulator_114/GCSimulator_114.sh +GC/Scenarios/GCSimulator/GCSimulator_115/GCSimulator_115.sh +GC/Scenarios/GCSimulator/GCSimulator_116/GCSimulator_116.sh +GC/Scenarios/GCSimulator/GCSimulator_117/GCSimulator_117.sh +GC/Scenarios/GCSimulator/GCSimulator_118/GCSimulator_118.sh +GC/Scenarios/GCSimulator/GCSimulator_119/GCSimulator_119.sh +GC/Scenarios/GCSimulator/GCSimulator_11/GCSimulator_11.sh +GC/Scenarios/GCSimulator/GCSimulator_120/GCSimulator_120.sh +GC/Scenarios/GCSimulator/GCSimulator_121/GCSimulator_121.sh +GC/Scenarios/GCSimulator/GCSimulator_122/GCSimulator_122.sh +GC/Scenarios/GCSimulator/GCSimulator_123/GCSimulator_123.sh +GC/Scenarios/GCSimulator/GCSimulator_124/GCSimulator_124.sh +GC/Scenarios/GCSimulator/GCSimulator_125/GCSimulator_125.sh +GC/Scenarios/GCSimulator/GCSimulator_126/GCSimulator_126.sh +GC/Scenarios/GCSimulator/GCSimulator_127/GCSimulator_127.sh +GC/Scenarios/GCSimulator/GCSimulator_128/GCSimulator_128.sh +GC/Scenarios/GCSimulator/GCSimulator_129/GCSimulator_129.sh +GC/Scenarios/GCSimulator/GCSimulator_12/GCSimulator_12.sh +GC/Scenarios/GCSimulator/GCSimulator_130/GCSimulator_130.sh +GC/Scenarios/GCSimulator/GCSimulator_131/GCSimulator_131.sh +GC/Scenarios/GCSimulator/GCSimulator_132/GCSimulator_132.sh +GC/Scenarios/GCSimulator/GCSimulator_133/GCSimulator_133.sh +GC/Scenarios/GCSimulator/GCSimulator_134/GCSimulator_134.sh +GC/Scenarios/GCSimulator/GCSimulator_135/GCSimulator_135.sh +GC/Scenarios/GCSimulator/GCSimulator_136/GCSimulator_136.sh +GC/Scenarios/GCSimulator/GCSimulator_137/GCSimulator_137.sh +GC/Scenarios/GCSimulator/GCSimulator_138/GCSimulator_138.sh +GC/Scenarios/GCSimulator/GCSimulator_139/GCSimulator_139.sh +GC/Scenarios/GCSimulator/GCSimulator_13/GCSimulator_13.sh +GC/Scenarios/GCSimulator/GCSimulator_140/GCSimulator_140.sh +GC/Scenarios/GCSimulator/GCSimulator_141/GCSimulator_141.sh +GC/Scenarios/GCSimulator/GCSimulator_142/GCSimulator_142.sh +GC/Scenarios/GCSimulator/GCSimulator_143/GCSimulator_143.sh +GC/Scenarios/GCSimulator/GCSimulator_144/GCSimulator_144.sh +GC/Scenarios/GCSimulator/GCSimulator_145/GCSimulator_145.sh +GC/Scenarios/GCSimulator/GCSimulator_146/GCSimulator_146.sh +GC/Scenarios/GCSimulator/GCSimulator_147/GCSimulator_147.sh +GC/Scenarios/GCSimulator/GCSimulator_148/GCSimulator_148.sh +GC/Scenarios/GCSimulator/GCSimulator_149/GCSimulator_149.sh +GC/Scenarios/GCSimulator/GCSimulator_14/GCSimulator_14.sh +GC/Scenarios/GCSimulator/GCSimulator_150/GCSimulator_150.sh +GC/Scenarios/GCSimulator/GCSimulator_151/GCSimulator_151.sh +GC/Scenarios/GCSimulator/GCSimulator_152/GCSimulator_152.sh +GC/Scenarios/GCSimulator/GCSimulator_153/GCSimulator_153.sh +GC/Scenarios/GCSimulator/GCSimulator_154/GCSimulator_154.sh +GC/Scenarios/GCSimulator/GCSimulator_155/GCSimulator_155.sh +GC/Scenarios/GCSimulator/GCSimulator_156/GCSimulator_156.sh +GC/Scenarios/GCSimulator/GCSimulator_157/GCSimulator_157.sh +GC/Scenarios/GCSimulator/GCSimulator_158/GCSimulator_158.sh +GC/Scenarios/GCSimulator/GCSimulator_159/GCSimulator_159.sh +GC/Scenarios/GCSimulator/GCSimulator_15/GCSimulator_15.sh +GC/Scenarios/GCSimulator/GCSimulator_160/GCSimulator_160.sh +GC/Scenarios/GCSimulator/GCSimulator_161/GCSimulator_161.sh +GC/Scenarios/GCSimulator/GCSimulator_162/GCSimulator_162.sh +GC/Scenarios/GCSimulator/GCSimulator_163/GCSimulator_163.sh +GC/Scenarios/GCSimulator/GCSimulator_164/GCSimulator_164.sh +GC/Scenarios/GCSimulator/GCSimulator_165/GCSimulator_165.sh +GC/Scenarios/GCSimulator/GCSimulator_166/GCSimulator_166.sh +GC/Scenarios/GCSimulator/GCSimulator_167/GCSimulator_167.sh +GC/Scenarios/GCSimulator/GCSimulator_168/GCSimulator_168.sh +GC/Scenarios/GCSimulator/GCSimulator_169/GCSimulator_169.sh +GC/Scenarios/GCSimulator/GCSimulator_16/GCSimulator_16.sh +GC/Scenarios/GCSimulator/GCSimulator_170/GCSimulator_170.sh +GC/Scenarios/GCSimulator/GCSimulator_171/GCSimulator_171.sh +GC/Scenarios/GCSimulator/GCSimulator_172/GCSimulator_172.sh +GC/Scenarios/GCSimulator/GCSimulator_173/GCSimulator_173.sh +GC/Scenarios/GCSimulator/GCSimulator_174/GCSimulator_174.sh +GC/Scenarios/GCSimulator/GCSimulator_175/GCSimulator_175.sh +GC/Scenarios/GCSimulator/GCSimulator_176/GCSimulator_176.sh +GC/Scenarios/GCSimulator/GCSimulator_177/GCSimulator_177.sh +GC/Scenarios/GCSimulator/GCSimulator_178/GCSimulator_178.sh +GC/Scenarios/GCSimulator/GCSimulator_179/GCSimulator_179.sh +GC/Scenarios/GCSimulator/GCSimulator_17/GCSimulator_17.sh +GC/Scenarios/GCSimulator/GCSimulator_180/GCSimulator_180.sh +GC/Scenarios/GCSimulator/GCSimulator_181/GCSimulator_181.sh +GC/Scenarios/GCSimulator/GCSimulator_182/GCSimulator_182.sh +GC/Scenarios/GCSimulator/GCSimulator_183/GCSimulator_183.sh +GC/Scenarios/GCSimulator/GCSimulator_184/GCSimulator_184.sh +GC/Scenarios/GCSimulator/GCSimulator_185/GCSimulator_185.sh +GC/Scenarios/GCSimulator/GCSimulator_186/GCSimulator_186.sh +GC/Scenarios/GCSimulator/GCSimulator_187/GCSimulator_187.sh +GC/Scenarios/GCSimulator/GCSimulator_188/GCSimulator_188.sh +GC/Scenarios/GCSimulator/GCSimulator_189/GCSimulator_189.sh +GC/Scenarios/GCSimulator/GCSimulator_18/GCSimulator_18.sh +GC/Scenarios/GCSimulator/GCSimulator_190/GCSimulator_190.sh +GC/Scenarios/GCSimulator/GCSimulator_191/GCSimulator_191.sh +GC/Scenarios/GCSimulator/GCSimulator_192/GCSimulator_192.sh +GC/Scenarios/GCSimulator/GCSimulator_193/GCSimulator_193.sh +GC/Scenarios/GCSimulator/GCSimulator_194/GCSimulator_194.sh +GC/Scenarios/GCSimulator/GCSimulator_195/GCSimulator_195.sh +GC/Scenarios/GCSimulator/GCSimulator_196/GCSimulator_196.sh +GC/Scenarios/GCSimulator/GCSimulator_197/GCSimulator_197.sh +GC/Scenarios/GCSimulator/GCSimulator_198/GCSimulator_198.sh +GC/Scenarios/GCSimulator/GCSimulator_199/GCSimulator_199.sh +GC/Scenarios/GCSimulator/GCSimulator_19/GCSimulator_19.sh +GC/Scenarios/GCSimulator/GCSimulator_1/GCSimulator_1.sh +GC/Scenarios/GCSimulator/GCSimulator_200/GCSimulator_200.sh +GC/Scenarios/GCSimulator/GCSimulator_201/GCSimulator_201.sh +GC/Scenarios/GCSimulator/GCSimulator_202/GCSimulator_202.sh +GC/Scenarios/GCSimulator/GCSimulator_203/GCSimulator_203.sh +GC/Scenarios/GCSimulator/GCSimulator_204/GCSimulator_204.sh +GC/Scenarios/GCSimulator/GCSimulator_205/GCSimulator_205.sh +GC/Scenarios/GCSimulator/GCSimulator_206/GCSimulator_206.sh +GC/Scenarios/GCSimulator/GCSimulator_207/GCSimulator_207.sh +GC/Scenarios/GCSimulator/GCSimulator_208/GCSimulator_208.sh +GC/Scenarios/GCSimulator/GCSimulator_209/GCSimulator_209.sh +GC/Scenarios/GCSimulator/GCSimulator_20/GCSimulator_20.sh +GC/Scenarios/GCSimulator/GCSimulator_210/GCSimulator_210.sh +GC/Scenarios/GCSimulator/GCSimulator_211/GCSimulator_211.sh +GC/Scenarios/GCSimulator/GCSimulator_212/GCSimulator_212.sh +GC/Scenarios/GCSimulator/GCSimulator_213/GCSimulator_213.sh +GC/Scenarios/GCSimulator/GCSimulator_214/GCSimulator_214.sh +GC/Scenarios/GCSimulator/GCSimulator_215/GCSimulator_215.sh +GC/Scenarios/GCSimulator/GCSimulator_216/GCSimulator_216.sh +GC/Scenarios/GCSimulator/GCSimulator_217/GCSimulator_217.sh +GC/Scenarios/GCSimulator/GCSimulator_218/GCSimulator_218.sh +GC/Scenarios/GCSimulator/GCSimulator_219/GCSimulator_219.sh +GC/Scenarios/GCSimulator/GCSimulator_21/GCSimulator_21.sh +GC/Scenarios/GCSimulator/GCSimulator_220/GCSimulator_220.sh +GC/Scenarios/GCSimulator/GCSimulator_221/GCSimulator_221.sh +GC/Scenarios/GCSimulator/GCSimulator_222/GCSimulator_222.sh +GC/Scenarios/GCSimulator/GCSimulator_223/GCSimulator_223.sh +GC/Scenarios/GCSimulator/GCSimulator_224/GCSimulator_224.sh +GC/Scenarios/GCSimulator/GCSimulator_225/GCSimulator_225.sh +GC/Scenarios/GCSimulator/GCSimulator_226/GCSimulator_226.sh +GC/Scenarios/GCSimulator/GCSimulator_227/GCSimulator_227.sh +GC/Scenarios/GCSimulator/GCSimulator_228/GCSimulator_228.sh +GC/Scenarios/GCSimulator/GCSimulator_229/GCSimulator_229.sh +GC/Scenarios/GCSimulator/GCSimulator_22/GCSimulator_22.sh +GC/Scenarios/GCSimulator/GCSimulator_230/GCSimulator_230.sh +GC/Scenarios/GCSimulator/GCSimulator_231/GCSimulator_231.sh +GC/Scenarios/GCSimulator/GCSimulator_232/GCSimulator_232.sh +GC/Scenarios/GCSimulator/GCSimulator_233/GCSimulator_233.sh +GC/Scenarios/GCSimulator/GCSimulator_234/GCSimulator_234.sh +GC/Scenarios/GCSimulator/GCSimulator_235/GCSimulator_235.sh +GC/Scenarios/GCSimulator/GCSimulator_236/GCSimulator_236.sh +GC/Scenarios/GCSimulator/GCSimulator_237/GCSimulator_237.sh +GC/Scenarios/GCSimulator/GCSimulator_238/GCSimulator_238.sh +GC/Scenarios/GCSimulator/GCSimulator_239/GCSimulator_239.sh +GC/Scenarios/GCSimulator/GCSimulator_23/GCSimulator_23.sh +GC/Scenarios/GCSimulator/GCSimulator_240/GCSimulator_240.sh +GC/Scenarios/GCSimulator/GCSimulator_241/GCSimulator_241.sh +GC/Scenarios/GCSimulator/GCSimulator_242/GCSimulator_242.sh +GC/Scenarios/GCSimulator/GCSimulator_243/GCSimulator_243.sh +GC/Scenarios/GCSimulator/GCSimulator_244/GCSimulator_244.sh +GC/Scenarios/GCSimulator/GCSimulator_245/GCSimulator_245.sh +GC/Scenarios/GCSimulator/GCSimulator_246/GCSimulator_246.sh +GC/Scenarios/GCSimulator/GCSimulator_247/GCSimulator_247.sh +GC/Scenarios/GCSimulator/GCSimulator_248/GCSimulator_248.sh +GC/Scenarios/GCSimulator/GCSimulator_249/GCSimulator_249.sh +GC/Scenarios/GCSimulator/GCSimulator_24/GCSimulator_24.sh +GC/Scenarios/GCSimulator/GCSimulator_250/GCSimulator_250.sh +GC/Scenarios/GCSimulator/GCSimulator_251/GCSimulator_251.sh +GC/Scenarios/GCSimulator/GCSimulator_252/GCSimulator_252.sh +GC/Scenarios/GCSimulator/GCSimulator_253/GCSimulator_253.sh +GC/Scenarios/GCSimulator/GCSimulator_254/GCSimulator_254.sh +GC/Scenarios/GCSimulator/GCSimulator_255/GCSimulator_255.sh +GC/Scenarios/GCSimulator/GCSimulator_256/GCSimulator_256.sh +GC/Scenarios/GCSimulator/GCSimulator_257/GCSimulator_257.sh +GC/Scenarios/GCSimulator/GCSimulator_258/GCSimulator_258.sh +GC/Scenarios/GCSimulator/GCSimulator_259/GCSimulator_259.sh +GC/Scenarios/GCSimulator/GCSimulator_25/GCSimulator_25.sh +GC/Scenarios/GCSimulator/GCSimulator_260/GCSimulator_260.sh +GC/Scenarios/GCSimulator/GCSimulator_261/GCSimulator_261.sh +GC/Scenarios/GCSimulator/GCSimulator_262/GCSimulator_262.sh +GC/Scenarios/GCSimulator/GCSimulator_263/GCSimulator_263.sh +GC/Scenarios/GCSimulator/GCSimulator_264/GCSimulator_264.sh +GC/Scenarios/GCSimulator/GCSimulator_265/GCSimulator_265.sh +GC/Scenarios/GCSimulator/GCSimulator_266/GCSimulator_266.sh +GC/Scenarios/GCSimulator/GCSimulator_267/GCSimulator_267.sh +GC/Scenarios/GCSimulator/GCSimulator_268/GCSimulator_268.sh +GC/Scenarios/GCSimulator/GCSimulator_269/GCSimulator_269.sh +GC/Scenarios/GCSimulator/GCSimulator_26/GCSimulator_26.sh +GC/Scenarios/GCSimulator/GCSimulator_270/GCSimulator_270.sh +GC/Scenarios/GCSimulator/GCSimulator_271/GCSimulator_271.sh +GC/Scenarios/GCSimulator/GCSimulator_272/GCSimulator_272.sh +GC/Scenarios/GCSimulator/GCSimulator_273/GCSimulator_273.sh +GC/Scenarios/GCSimulator/GCSimulator_274/GCSimulator_274.sh +GC/Scenarios/GCSimulator/GCSimulator_275/GCSimulator_275.sh +GC/Scenarios/GCSimulator/GCSimulator_276/GCSimulator_276.sh +GC/Scenarios/GCSimulator/GCSimulator_277/GCSimulator_277.sh +GC/Scenarios/GCSimulator/GCSimulator_278/GCSimulator_278.sh +GC/Scenarios/GCSimulator/GCSimulator_279/GCSimulator_279.sh +GC/Scenarios/GCSimulator/GCSimulator_27/GCSimulator_27.sh +GC/Scenarios/GCSimulator/GCSimulator_280/GCSimulator_280.sh +GC/Scenarios/GCSimulator/GCSimulator_281/GCSimulator_281.sh +GC/Scenarios/GCSimulator/GCSimulator_282/GCSimulator_282.sh +GC/Scenarios/GCSimulator/GCSimulator_283/GCSimulator_283.sh +GC/Scenarios/GCSimulator/GCSimulator_284/GCSimulator_284.sh +GC/Scenarios/GCSimulator/GCSimulator_285/GCSimulator_285.sh +GC/Scenarios/GCSimulator/GCSimulator_286/GCSimulator_286.sh +GC/Scenarios/GCSimulator/GCSimulator_287/GCSimulator_287.sh +GC/Scenarios/GCSimulator/GCSimulator_288/GCSimulator_288.sh +GC/Scenarios/GCSimulator/GCSimulator_289/GCSimulator_289.sh +GC/Scenarios/GCSimulator/GCSimulator_28/GCSimulator_28.sh +GC/Scenarios/GCSimulator/GCSimulator_290/GCSimulator_290.sh +GC/Scenarios/GCSimulator/GCSimulator_291/GCSimulator_291.sh +GC/Scenarios/GCSimulator/GCSimulator_292/GCSimulator_292.sh +GC/Scenarios/GCSimulator/GCSimulator_293/GCSimulator_293.sh +GC/Scenarios/GCSimulator/GCSimulator_294/GCSimulator_294.sh +GC/Scenarios/GCSimulator/GCSimulator_295/GCSimulator_295.sh +GC/Scenarios/GCSimulator/GCSimulator_296/GCSimulator_296.sh +GC/Scenarios/GCSimulator/GCSimulator_297/GCSimulator_297.sh +GC/Scenarios/GCSimulator/GCSimulator_298/GCSimulator_298.sh +GC/Scenarios/GCSimulator/GCSimulator_299/GCSimulator_299.sh +GC/Scenarios/GCSimulator/GCSimulator_29/GCSimulator_29.sh +GC/Scenarios/GCSimulator/GCSimulator_2/GCSimulator_2.sh +GC/Scenarios/GCSimulator/GCSimulator_300/GCSimulator_300.sh +GC/Scenarios/GCSimulator/GCSimulator_301/GCSimulator_301.sh +GC/Scenarios/GCSimulator/GCSimulator_302/GCSimulator_302.sh +GC/Scenarios/GCSimulator/GCSimulator_303/GCSimulator_303.sh +GC/Scenarios/GCSimulator/GCSimulator_304/GCSimulator_304.sh +GC/Scenarios/GCSimulator/GCSimulator_305/GCSimulator_305.sh +GC/Scenarios/GCSimulator/GCSimulator_306/GCSimulator_306.sh +GC/Scenarios/GCSimulator/GCSimulator_307/GCSimulator_307.sh +GC/Scenarios/GCSimulator/GCSimulator_308/GCSimulator_308.sh +GC/Scenarios/GCSimulator/GCSimulator_309/GCSimulator_309.sh +GC/Scenarios/GCSimulator/GCSimulator_30/GCSimulator_30.sh +GC/Scenarios/GCSimulator/GCSimulator_310/GCSimulator_310.sh +GC/Scenarios/GCSimulator/GCSimulator_311/GCSimulator_311.sh +GC/Scenarios/GCSimulator/GCSimulator_312/GCSimulator_312.sh +GC/Scenarios/GCSimulator/GCSimulator_313/GCSimulator_313.sh +GC/Scenarios/GCSimulator/GCSimulator_314/GCSimulator_314.sh +GC/Scenarios/GCSimulator/GCSimulator_315/GCSimulator_315.sh +GC/Scenarios/GCSimulator/GCSimulator_316/GCSimulator_316.sh +GC/Scenarios/GCSimulator/GCSimulator_317/GCSimulator_317.sh +GC/Scenarios/GCSimulator/GCSimulator_318/GCSimulator_318.sh +GC/Scenarios/GCSimulator/GCSimulator_319/GCSimulator_319.sh +GC/Scenarios/GCSimulator/GCSimulator_31/GCSimulator_31.sh +GC/Scenarios/GCSimulator/GCSimulator_320/GCSimulator_320.sh +GC/Scenarios/GCSimulator/GCSimulator_321/GCSimulator_321.sh +GC/Scenarios/GCSimulator/GCSimulator_322/GCSimulator_322.sh +GC/Scenarios/GCSimulator/GCSimulator_323/GCSimulator_323.sh +GC/Scenarios/GCSimulator/GCSimulator_324/GCSimulator_324.sh +GC/Scenarios/GCSimulator/GCSimulator_325/GCSimulator_325.sh +GC/Scenarios/GCSimulator/GCSimulator_326/GCSimulator_326.sh +GC/Scenarios/GCSimulator/GCSimulator_327/GCSimulator_327.sh +GC/Scenarios/GCSimulator/GCSimulator_328/GCSimulator_328.sh +GC/Scenarios/GCSimulator/GCSimulator_329/GCSimulator_329.sh +GC/Scenarios/GCSimulator/GCSimulator_32/GCSimulator_32.sh +GC/Scenarios/GCSimulator/GCSimulator_330/GCSimulator_330.sh +GC/Scenarios/GCSimulator/GCSimulator_331/GCSimulator_331.sh +GC/Scenarios/GCSimulator/GCSimulator_332/GCSimulator_332.sh +GC/Scenarios/GCSimulator/GCSimulator_333/GCSimulator_333.sh +GC/Scenarios/GCSimulator/GCSimulator_334/GCSimulator_334.sh +GC/Scenarios/GCSimulator/GCSimulator_335/GCSimulator_335.sh +GC/Scenarios/GCSimulator/GCSimulator_336/GCSimulator_336.sh +GC/Scenarios/GCSimulator/GCSimulator_337/GCSimulator_337.sh +GC/Scenarios/GCSimulator/GCSimulator_338/GCSimulator_338.sh +GC/Scenarios/GCSimulator/GCSimulator_339/GCSimulator_339.sh +GC/Scenarios/GCSimulator/GCSimulator_33/GCSimulator_33.sh +GC/Scenarios/GCSimulator/GCSimulator_340/GCSimulator_340.sh +GC/Scenarios/GCSimulator/GCSimulator_341/GCSimulator_341.sh +GC/Scenarios/GCSimulator/GCSimulator_342/GCSimulator_342.sh +GC/Scenarios/GCSimulator/GCSimulator_343/GCSimulator_343.sh +GC/Scenarios/GCSimulator/GCSimulator_344/GCSimulator_344.sh +GC/Scenarios/GCSimulator/GCSimulator_345/GCSimulator_345.sh +GC/Scenarios/GCSimulator/GCSimulator_346/GCSimulator_346.sh +GC/Scenarios/GCSimulator/GCSimulator_347/GCSimulator_347.sh +GC/Scenarios/GCSimulator/GCSimulator_348/GCSimulator_348.sh +GC/Scenarios/GCSimulator/GCSimulator_349/GCSimulator_349.sh +GC/Scenarios/GCSimulator/GCSimulator_34/GCSimulator_34.sh +GC/Scenarios/GCSimulator/GCSimulator_350/GCSimulator_350.sh +GC/Scenarios/GCSimulator/GCSimulator_351/GCSimulator_351.sh +GC/Scenarios/GCSimulator/GCSimulator_352/GCSimulator_352.sh +GC/Scenarios/GCSimulator/GCSimulator_353/GCSimulator_353.sh +GC/Scenarios/GCSimulator/GCSimulator_354/GCSimulator_354.sh +GC/Scenarios/GCSimulator/GCSimulator_355/GCSimulator_355.sh +GC/Scenarios/GCSimulator/GCSimulator_356/GCSimulator_356.sh +GC/Scenarios/GCSimulator/GCSimulator_357/GCSimulator_357.sh +GC/Scenarios/GCSimulator/GCSimulator_358/GCSimulator_358.sh +GC/Scenarios/GCSimulator/GCSimulator_359/GCSimulator_359.sh +GC/Scenarios/GCSimulator/GCSimulator_35/GCSimulator_35.sh +GC/Scenarios/GCSimulator/GCSimulator_360/GCSimulator_360.sh +GC/Scenarios/GCSimulator/GCSimulator_361/GCSimulator_361.sh +GC/Scenarios/GCSimulator/GCSimulator_362/GCSimulator_362.sh +GC/Scenarios/GCSimulator/GCSimulator_363/GCSimulator_363.sh +GC/Scenarios/GCSimulator/GCSimulator_364/GCSimulator_364.sh +GC/Scenarios/GCSimulator/GCSimulator_365/GCSimulator_365.sh +GC/Scenarios/GCSimulator/GCSimulator_366/GCSimulator_366.sh +GC/Scenarios/GCSimulator/GCSimulator_367/GCSimulator_367.sh +GC/Scenarios/GCSimulator/GCSimulator_368/GCSimulator_368.sh +GC/Scenarios/GCSimulator/GCSimulator_369/GCSimulator_369.sh +GC/Scenarios/GCSimulator/GCSimulator_36/GCSimulator_36.sh +GC/Scenarios/GCSimulator/GCSimulator_370/GCSimulator_370.sh +GC/Scenarios/GCSimulator/GCSimulator_371/GCSimulator_371.sh +GC/Scenarios/GCSimulator/GCSimulator_372/GCSimulator_372.sh +GC/Scenarios/GCSimulator/GCSimulator_373/GCSimulator_373.sh +GC/Scenarios/GCSimulator/GCSimulator_374/GCSimulator_374.sh +GC/Scenarios/GCSimulator/GCSimulator_375/GCSimulator_375.sh +GC/Scenarios/GCSimulator/GCSimulator_376/GCSimulator_376.sh +GC/Scenarios/GCSimulator/GCSimulator_377/GCSimulator_377.sh +GC/Scenarios/GCSimulator/GCSimulator_378/GCSimulator_378.sh +GC/Scenarios/GCSimulator/GCSimulator_379/GCSimulator_379.sh +GC/Scenarios/GCSimulator/GCSimulator_37/GCSimulator_37.sh +GC/Scenarios/GCSimulator/GCSimulator_380/GCSimulator_380.sh +GC/Scenarios/GCSimulator/GCSimulator_381/GCSimulator_381.sh +GC/Scenarios/GCSimulator/GCSimulator_382/GCSimulator_382.sh +GC/Scenarios/GCSimulator/GCSimulator_383/GCSimulator_383.sh +GC/Scenarios/GCSimulator/GCSimulator_384/GCSimulator_384.sh +GC/Scenarios/GCSimulator/GCSimulator_385/GCSimulator_385.sh +GC/Scenarios/GCSimulator/GCSimulator_386/GCSimulator_386.sh +GC/Scenarios/GCSimulator/GCSimulator_387/GCSimulator_387.sh +GC/Scenarios/GCSimulator/GCSimulator_388/GCSimulator_388.sh +GC/Scenarios/GCSimulator/GCSimulator_389/GCSimulator_389.sh +GC/Scenarios/GCSimulator/GCSimulator_38/GCSimulator_38.sh +GC/Scenarios/GCSimulator/GCSimulator_390/GCSimulator_390.sh +GC/Scenarios/GCSimulator/GCSimulator_391/GCSimulator_391.sh +GC/Scenarios/GCSimulator/GCSimulator_392/GCSimulator_392.sh +GC/Scenarios/GCSimulator/GCSimulator_393/GCSimulator_393.sh +GC/Scenarios/GCSimulator/GCSimulator_394/GCSimulator_394.sh +GC/Scenarios/GCSimulator/GCSimulator_395/GCSimulator_395.sh +GC/Scenarios/GCSimulator/GCSimulator_396/GCSimulator_396.sh +GC/Scenarios/GCSimulator/GCSimulator_397/GCSimulator_397.sh +GC/Scenarios/GCSimulator/GCSimulator_398/GCSimulator_398.sh +GC/Scenarios/GCSimulator/GCSimulator_399/GCSimulator_399.sh +GC/Scenarios/GCSimulator/GCSimulator_39/GCSimulator_39.sh +GC/Scenarios/GCSimulator/GCSimulator_3/GCSimulator_3.sh +GC/Scenarios/GCSimulator/GCSimulator_400/GCSimulator_400.sh +GC/Scenarios/GCSimulator/GCSimulator_401/GCSimulator_401.sh +GC/Scenarios/GCSimulator/GCSimulator_402/GCSimulator_402.sh +GC/Scenarios/GCSimulator/GCSimulator_403/GCSimulator_403.sh +GC/Scenarios/GCSimulator/GCSimulator_404/GCSimulator_404.sh +GC/Scenarios/GCSimulator/GCSimulator_405/GCSimulator_405.sh +GC/Scenarios/GCSimulator/GCSimulator_406/GCSimulator_406.sh +GC/Scenarios/GCSimulator/GCSimulator_407/GCSimulator_407.sh +GC/Scenarios/GCSimulator/GCSimulator_408/GCSimulator_408.sh +GC/Scenarios/GCSimulator/GCSimulator_409/GCSimulator_409.sh +GC/Scenarios/GCSimulator/GCSimulator_40/GCSimulator_40.sh +GC/Scenarios/GCSimulator/GCSimulator_410/GCSimulator_410.sh +GC/Scenarios/GCSimulator/GCSimulator_411/GCSimulator_411.sh +GC/Scenarios/GCSimulator/GCSimulator_412/GCSimulator_412.sh +GC/Scenarios/GCSimulator/GCSimulator_413/GCSimulator_413.sh +GC/Scenarios/GCSimulator/GCSimulator_414/GCSimulator_414.sh +GC/Scenarios/GCSimulator/GCSimulator_415/GCSimulator_415.sh +GC/Scenarios/GCSimulator/GCSimulator_416/GCSimulator_416.sh +GC/Scenarios/GCSimulator/GCSimulator_417/GCSimulator_417.sh +GC/Scenarios/GCSimulator/GCSimulator_418/GCSimulator_418.sh +GC/Scenarios/GCSimulator/GCSimulator_419/GCSimulator_419.sh +GC/Scenarios/GCSimulator/GCSimulator_41/GCSimulator_41.sh +GC/Scenarios/GCSimulator/GCSimulator_420/GCSimulator_420.sh +GC/Scenarios/GCSimulator/GCSimulator_421/GCSimulator_421.sh +GC/Scenarios/GCSimulator/GCSimulator_422/GCSimulator_422.sh +GC/Scenarios/GCSimulator/GCSimulator_423/GCSimulator_423.sh +GC/Scenarios/GCSimulator/GCSimulator_424/GCSimulator_424.sh +GC/Scenarios/GCSimulator/GCSimulator_425/GCSimulator_425.sh +GC/Scenarios/GCSimulator/GCSimulator_426/GCSimulator_426.sh +GC/Scenarios/GCSimulator/GCSimulator_427/GCSimulator_427.sh +GC/Scenarios/GCSimulator/GCSimulator_428/GCSimulator_428.sh +GC/Scenarios/GCSimulator/GCSimulator_429/GCSimulator_429.sh +GC/Scenarios/GCSimulator/GCSimulator_42/GCSimulator_42.sh +GC/Scenarios/GCSimulator/GCSimulator_430/GCSimulator_430.sh +GC/Scenarios/GCSimulator/GCSimulator_431/GCSimulator_431.sh +GC/Scenarios/GCSimulator/GCSimulator_432/GCSimulator_432.sh +GC/Scenarios/GCSimulator/GCSimulator_43/GCSimulator_43.sh +GC/Scenarios/GCSimulator/GCSimulator_44/GCSimulator_44.sh +GC/Scenarios/GCSimulator/GCSimulator_45/GCSimulator_45.sh +GC/Scenarios/GCSimulator/GCSimulator_46/GCSimulator_46.sh +GC/Scenarios/GCSimulator/GCSimulator_47/GCSimulator_47.sh +GC/Scenarios/GCSimulator/GCSimulator_48/GCSimulator_48.sh +GC/Scenarios/GCSimulator/GCSimulator_49/GCSimulator_49.sh +GC/Scenarios/GCSimulator/GCSimulator_4/GCSimulator_4.sh +GC/Scenarios/GCSimulator/GCSimulator_50/GCSimulator_50.sh +GC/Scenarios/GCSimulator/GCSimulator_51/GCSimulator_51.sh +GC/Scenarios/GCSimulator/GCSimulator_52/GCSimulator_52.sh +GC/Scenarios/GCSimulator/GCSimulator_53/GCSimulator_53.sh +GC/Scenarios/GCSimulator/GCSimulator_54/GCSimulator_54.sh +GC/Scenarios/GCSimulator/GCSimulator_55/GCSimulator_55.sh +GC/Scenarios/GCSimulator/GCSimulator_56/GCSimulator_56.sh +GC/Scenarios/GCSimulator/GCSimulator_57/GCSimulator_57.sh +GC/Scenarios/GCSimulator/GCSimulator_58/GCSimulator_58.sh +GC/Scenarios/GCSimulator/GCSimulator_59/GCSimulator_59.sh +GC/Scenarios/GCSimulator/GCSimulator_5/GCSimulator_5.sh +GC/Scenarios/GCSimulator/GCSimulator_60/GCSimulator_60.sh +GC/Scenarios/GCSimulator/GCSimulator_61/GCSimulator_61.sh +GC/Scenarios/GCSimulator/GCSimulator_62/GCSimulator_62.sh +GC/Scenarios/GCSimulator/GCSimulator_63/GCSimulator_63.sh +GC/Scenarios/GCSimulator/GCSimulator_64/GCSimulator_64.sh +GC/Scenarios/GCSimulator/GCSimulator_65/GCSimulator_65.sh +GC/Scenarios/GCSimulator/GCSimulator_66/GCSimulator_66.sh +GC/Scenarios/GCSimulator/GCSimulator_67/GCSimulator_67.sh +GC/Scenarios/GCSimulator/GCSimulator_68/GCSimulator_68.sh +GC/Scenarios/GCSimulator/GCSimulator_69/GCSimulator_69.sh +GC/Scenarios/GCSimulator/GCSimulator_6/GCSimulator_6.sh +GC/Scenarios/GCSimulator/GCSimulator_70/GCSimulator_70.sh +GC/Scenarios/GCSimulator/GCSimulator_71/GCSimulator_71.sh +GC/Scenarios/GCSimulator/GCSimulator_72/GCSimulator_72.sh +GC/Scenarios/GCSimulator/GCSimulator_73/GCSimulator_73.sh +GC/Scenarios/GCSimulator/GCSimulator_74/GCSimulator_74.sh +GC/Scenarios/GCSimulator/GCSimulator_75/GCSimulator_75.sh +GC/Scenarios/GCSimulator/GCSimulator_76/GCSimulator_76.sh +GC/Scenarios/GCSimulator/GCSimulator_77/GCSimulator_77.sh +GC/Scenarios/GCSimulator/GCSimulator_78/GCSimulator_78.sh +GC/Scenarios/GCSimulator/GCSimulator_79/GCSimulator_79.sh +GC/Scenarios/GCSimulator/GCSimulator_7/GCSimulator_7.sh +GC/Scenarios/GCSimulator/GCSimulator_80/GCSimulator_80.sh +GC/Scenarios/GCSimulator/GCSimulator_81/GCSimulator_81.sh +GC/Scenarios/GCSimulator/GCSimulator_82/GCSimulator_82.sh +GC/Scenarios/GCSimulator/GCSimulator_83/GCSimulator_83.sh +GC/Scenarios/GCSimulator/GCSimulator_84/GCSimulator_84.sh +GC/Scenarios/GCSimulator/GCSimulator_85/GCSimulator_85.sh +GC/Scenarios/GCSimulator/GCSimulator_86/GCSimulator_86.sh +GC/Scenarios/GCSimulator/GCSimulator_87/GCSimulator_87.sh +GC/Scenarios/GCSimulator/GCSimulator_88/GCSimulator_88.sh +GC/Scenarios/GCSimulator/GCSimulator_89/GCSimulator_89.sh +GC/Scenarios/GCSimulator/GCSimulator_8/GCSimulator_8.sh +GC/Scenarios/GCSimulator/GCSimulator_90/GCSimulator_90.sh +GC/Scenarios/GCSimulator/GCSimulator_91/GCSimulator_91.sh +GC/Scenarios/GCSimulator/GCSimulator_92/GCSimulator_92.sh +GC/Scenarios/GCSimulator/GCSimulator_93/GCSimulator_93.sh +GC/Scenarios/GCSimulator/GCSimulator_94/GCSimulator_94.sh +GC/Scenarios/GCSimulator/GCSimulator_95/GCSimulator_95.sh +GC/Scenarios/GCSimulator/GCSimulator_96/GCSimulator_96.sh +GC/Scenarios/GCSimulator/GCSimulator_97/GCSimulator_97.sh +GC/Scenarios/GCSimulator/GCSimulator_98/GCSimulator_98.sh +GC/Scenarios/GCSimulator/GCSimulator_99/GCSimulator_99.sh +GC/Scenarios/GCSimulator/GCSimulator_9/GCSimulator_9.sh \ No newline at end of file diff --git a/tests/issues.targets b/tests/issues.targets index 614d827..78602eb 100644 --- a/tests/issues.targets +++ b/tests/issues.targets @@ -297,7 +297,7 @@ 3571 - + 3392 @@ -310,42 +310,15 @@ 3392 - - 3392 - 3392 - - 3392 - - - 3392 - - - 3392 - 3392 - - 3392 - - - 3392 - - - 3392 - - - 3392 - 3392 - - 3392 - 3392 diff --git a/tests/src/CLRTest.Execute.Bash.targets b/tests/src/CLRTest.Execute.Bash.targets index d4bef47..9474479 100644 --- a/tests/src/CLRTest.Execute.Bash.targets +++ b/tests/src/CLRTest.Execute.Bash.targets @@ -165,6 +165,14 @@ then exit 0 fi ]]> + + @@ -314,6 +322,9 @@ $(BashEnvironmentVariables) $(BashCLRTestEnvironmentCompatibilityCheck) $(BashCLRTestArgPrep) $(BashCLRTestExitCodePrep) +# Long-running GC test checks +$(BashCLRTestGCSimulatorSkipCondition) +$(BashCLRTestGCLongTestSkipCondition) # CrossGen Script (when /p:CrossGen=true) $(CrossgenBashScript) # IlasmRoundTrip Script diff --git a/tests/src/CLRTest.Execute.Batch.targets b/tests/src/CLRTest.Execute.Batch.targets index 7fbe32c..e317f63 100644 --- a/tests/src/CLRTest.Execute.Batch.targets +++ b/tests/src/CLRTest.Execute.Batch.targets @@ -157,6 +157,18 @@ IF "%COMPlus_JitStress%"=="" IF "%COMPlus_JitStressRegs%"=="" IF "%COMPlus_JITMi echo Skipping execution because this is not a long-running GC test Exit /b 0 ]]> + + + + /// we might want to implement a different strategy that decide the life time of the object based on the time + /// elabsed since the last object acceess. + /// + /// + class TimeBasedLifeTimeStrategy : LifeTimeStrategy + { + private int lastMediumTickCount = Environment.TickCount; + private int lastShortTickCount = Environment.TickCount; + private int lastMediumIndex = 0; + private int lastShortIndex = 0; + + public int NextObject(LifeTimeENUM lifeTime) + { + switch (lifeTime) + { + case LifeTimeENUM.Short: + return lastShortIndex; + case LifeTimeENUM.Medium: + return lastMediumIndex; + case LifeTimeENUM.Long: + return 0; + } + return 0; + } + + public bool ShouldDie(LifeTime o, int index) + { + + LifeTimeENUM lifeTime = o.LifeTime; + // short objects will live for 20 seconds, long objects will live for more. + switch (lifeTime) + { + case LifeTimeENUM.Short: + if (Environment.TickCount - lastShortTickCount > 1) // this is in accureat enumber, since + // we will be finsh iterating throuh the short life time object in less than 1 ms , so we need + // to switch either to QueryPeroformanceCounter, or to block the loop for some time through + // Thread.Sleep, the other solution is to increase the number of objects a lot. + { + lastShortTickCount = Environment.TickCount; + lastShortIndex = index; + return true; + } + + break; + case LifeTimeENUM.Medium: + if (Environment.TickCount - lastMediumTickCount > 20) + { + lastMediumTickCount = Environment.TickCount; + lastMediumIndex = index; + return true; + } + + break; + case LifeTimeENUM.Long: + break; + } + return false; + } + } + + class ObjectWrapper : LifeTime, PinnedObject + { + + private bool pinned; + private bool weakReferenced; + private GCHandle gcHandle; + private LifeTimeENUM lifeTime; + private WeakReference weakRef; + + private byte[] data; + private int dataSize; + public int DataSize + { + set + { + dataSize = value; + data = new byte[dataSize]; + if (pinned) + { + gcHandle = GCHandle.Alloc(data, GCHandleType.Pinned); + } + + if (weakReferenced) + { + weakRef = new WeakReference(data); + } + } + + } + + public LifeTimeENUM LifeTime + { + get + { + return lifeTime; + } + set + { + this.lifeTime = value; + } + } + + public bool IsPinned() + { + return pinned; + } + + public bool IsWeak() + { + return weakReferenced; + } + + + public void CleanUp() + { + if (pinned) + { + gcHandle.Free(); + } + } + + public ObjectWrapper(bool runFinalizer, bool pinned, bool weakReferenced) + { + this.pinned = pinned; + this.weakReferenced = weakReferenced; + if (!runFinalizer) + { + GC.SuppressFinalize(this); + } + } + + + ~ObjectWrapper() + { + // DO SOMETHING BAD IN FINALIZER + data = new byte[dataSize]; + } + } + + class ClientSimulator + { + [ThreadStatic] + private static ObjectLifeTimeManager lifeTimeManager; + + private static int meanAllocSize = 17; + + private static int mediumLifeTime = 30; + private static int shortLifeTime = 3; + + private static int mediumDataSize = meanAllocSize; + private static int shortDataSize = meanAllocSize; + + private static int mediumDataCount = 1000000; + private static int shortDataCount = 5000; + + private static int countIters = 500; + private static float percentPinned = 0.02F; + private static float percentWeak = 0.0F; + + private static int numThreads = 1; + + private static bool runFinalizer = false; + private static string strategy = "Random"; + + private static bool noTimer = false; + + private static string objectGraph = "List"; + + + private static List threadList = new List(); + public static int Main(string[] args) + { + + bool shouldContinue = ParseArgs(args); + if (!shouldContinue) + { + return 1; + } + + int timer = 0; + // Run the test. + + for (int i = 0; i < numThreads; ++i) + { + Thread thread = new Thread(RunTest); + threadList.Add(thread); + thread.Start(); + + } + + foreach (Thread t in threadList) + { + t.Join(); + } + + return 100; + } + + + public static void RunTest(object threadInfoObj) + { + + // Allocate the objects. + lifeTimeManager = new ObjectLifeTimeManager(); + LifeTimeStrategy ltStrategy; + + int threadMediumLifeTime = mediumLifeTime; + int threadShortLifeTime = shortLifeTime; + int threadMediumDataSize = mediumDataSize; + int threadShortDataSize = shortDataSize; + int threadMediumDataCount = mediumDataCount; + int threadShortDataCount = shortDataCount; + float threadPercentPinned = percentPinned; + float threadPercentWeak = percentWeak; + bool threadRunFinalizer = runFinalizer; + string threadStrategy = strategy; + string threadObjectGraph = objectGraph; + + if (threadObjectGraph.ToLower() == "tree") + { + lifeTimeManager.SetObjectContainer(new BinaryTreeObjectContainer()); + } + else + { + lifeTimeManager.SetObjectContainer(new ArrayObjectContainer()); + } + + lifeTimeManager.Init(threadShortDataCount + threadMediumDataCount); + + + if (threadStrategy.ToLower()=="random") + { + ltStrategy = new RandomLifeTimeStrategy(threadMediumLifeTime, threadShortLifeTime, threadMediumDataCount, threadShortDataCount); + } + else + { + // may be we need to specify the elapsed time. + ltStrategy = new TimeBasedLifeTimeStrategy(); + } + + lifeTimeManager.LifeTimeStrategy = ltStrategy; + lifeTimeManager.objectDied += new ObjectDiedEventHandler(objectDied); + + for (int i=0; i < threadShortDataCount + threadMediumDataCount; ++i) + { + bool pinned = false; + if (threadPercentPinned!=0) + { + pinned = (i % ((int)(1/threadPercentPinned))==0); + } + + bool weak = false; + if (threadPercentWeak!=0) + { + weak = (i % ((int)(1/threadPercentWeak))==0); + } + + ObjectWrapper oWrapper = new ObjectWrapper(threadRunFinalizer, pinned, weak); + if (i < threadShortDataCount) + { + oWrapper.DataSize = threadShortDataSize; + oWrapper.LifeTime = LifeTimeENUM.Short; + } + else + { + oWrapper.DataSize = threadMediumDataSize; + oWrapper.LifeTime = LifeTimeENUM.Medium; + } + + lifeTimeManager.AddObject(oWrapper, i); + } + + for (int i = 0; i < countIters; ++i) + { + + // Run the test. + lifeTimeManager.Run(); + } + + } + + private static void objectDied(LifeTime lifeTime, int index) + { + // put a new fresh object instead; + + LifeTimeENUM lifeTimeEnum; + lifeTimeEnum = lifeTime.LifeTime; + + ObjectWrapper oWrapper = lifeTime as ObjectWrapper; + bool weakReferenced = oWrapper.IsWeak(); + bool pinned = oWrapper.IsPinned(); + if (pinned) + { + oWrapper.CleanUp(); + } + + oWrapper = new ObjectWrapper(runFinalizer, pinned, weakReferenced); + oWrapper.LifeTime = lifeTimeEnum; + oWrapper.DataSize = lifeTime.LifeTime == LifeTimeENUM.Short ? shortDataSize : mediumDataSize; + lifeTimeManager.AddObject(oWrapper, index); + } + + /// + /// Parse the arguments, no error checking is done yet. + /// TODO: Add more error checking. + /// + /// Populate variables with defaults, then overwrite them with config settings. Finally overwrite them with command line parameters + /// + public static bool ParseArgs(string[] args) + { + + for (int i = 0; i < args.Length; ++i) + { + string currentArg = args[i]; + string currentArgValue; + if (currentArg.StartsWith("-") || currentArg.StartsWith("/")) + { + currentArg = currentArg.Substring(1); + } + else + { + continue; + } + + if (currentArg.StartsWith("?")) + { + Usage(); + return false; + } + if (currentArg.StartsWith("iter") || currentArg.Equals("i")) // number of iterations + { + currentArgValue = args[++i]; + countIters = Int32.Parse(currentArgValue); + } + if (currentArg.StartsWith("datasize") || currentArg.Equals("dz")) + { + currentArgValue = args[++i]; + mediumDataSize = Int32.Parse(currentArgValue); + } + + if (currentArg.StartsWith("sdatasize") || currentArg.Equals("sdz")) + { + currentArgValue = args[++i]; + shortDataSize = Int32.Parse(currentArgValue); + } + + if (currentArg.StartsWith("datacount") || currentArg.Equals("dc")) + { + currentArgValue = args[++i]; + mediumDataCount = Int32.Parse(currentArgValue); + } + + if (currentArg.StartsWith("sdatacount") || currentArg.Equals("sdc")) + { + currentArgValue = args[++i]; + shortDataCount = Int32.Parse(currentArgValue); + } + + + if (currentArg.StartsWith("lifetime") || currentArg.Equals("lt")) + { + currentArgValue = args[++i]; + shortLifeTime = Int32.Parse(currentArgValue); + mediumLifeTime = shortLifeTime * 10; + } + + if (currentArg.StartsWith("threads") || currentArg.Equals("t")) + { + currentArgValue = args[++i]; + numThreads = Int32.Parse(currentArgValue); + } + if (currentArg.StartsWith("fin") || currentArg.Equals("f")) + { + runFinalizer = true; + } + + if (currentArg.StartsWith("datapinned") || currentArg.StartsWith("dp")) // percentage data pinned + { + currentArgValue = args[++i]; + percentPinned = float.Parse(currentArgValue); + } + + if (currentArg.StartsWith("strategy")) //strategy that if the object died or not + { + currentArgValue = args[++i]; + strategy = currentArgValue; + } + + if (currentArg.StartsWith("notimer")) + { + noTimer = true; + } + + if (currentArg.StartsWith("dataweak") || currentArg.StartsWith("dw") ) + { + currentArgValue = args[++i]; + percentWeak = float.Parse(currentArgValue); + } + + if (currentArg.StartsWith("objectgraph") || currentArg.StartsWith("og") ) + { + currentArgValue = args[++i]; + objectGraph = currentArgValue; + } + } + + return true; + } + + public static void Usage() + { + Console.WriteLine("GCSimulator [-?] [-i ] [-dz ] [-lt ] [-t ] [-f] [-dp ]"); + Console.WriteLine("Options"); + Console.WriteLine("-? Display the usage and exit"); + Console.WriteLine("-i [-iter] : specify number of iterations for the test, default is " + countIters); + Console.WriteLine("-dz [-datasize] : specify the data size in bytes, default is " + mediumDataSize); + Console.WriteLine("-sdz [sdatasize] : specify the short lived data size in bytes, default is " + shortDataSize); + Console.WriteLine("-dc [datacount] : specify the medium lived data count , default is " + mediumDataCount); + Console.WriteLine("-sdc [sdatacount] : specify the short lived data count, default is " + shortDataCount); + Console.WriteLine("-lt [-lifetime] : specify the life time of the objects, default is " + shortLifeTime); + Console.WriteLine("-t [-threads] : specifiy number of threads , default is " + numThreads); + Console.WriteLine("-f [-fin] : specify whether to do allocation in finalizer or not, default is no"); + Console.WriteLine("-dp [-datapinned] : specify the percentage of data that we want to pin, default is " + percentPinned); + Console.WriteLine("-dw [-dataweak] : specify the percentage of data that we want to weak reference, default is " + percentWeak); + Console.WriteLine("-strategy < indicate the strategy for deciding when the objects should die, right now we support only Random and Time strategy, default is Random"); + Console.WriteLine("-og [-objectgraph] : specify whether to use a List- or Tree-based object graph, default is " + objectGraph); + Console.WriteLine("-notimer < indicate that we do not want to run the performance timer and output any results , default is no"); + } + + } +} diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_1.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_1.csproj new file mode 100644 index 0000000..28f032d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_1.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_10.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_10.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_10.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_100.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_100.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_100.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_101.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_101.csproj new file mode 100644 index 0000000..6c7fcc3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_101.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_102.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_102.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_102.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_103.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_103.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_103.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_104.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_104.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_104.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_105.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_105.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_105.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_106.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_106.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_106.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_107.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_107.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_107.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_108.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_108.csproj new file mode 100644 index 0000000..2d8d38e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_108.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_109.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_109.csproj new file mode 100644 index 0000000..f493112 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_109.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_11.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_11.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_11.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_110.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_110.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_110.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_111.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_111.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_111.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_112.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_112.csproj new file mode 100644 index 0000000..9dfa7df --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_112.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_113.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_113.csproj new file mode 100644 index 0000000..9036b0b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_113.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_114.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_114.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_114.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_115.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_115.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_115.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_116.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_116.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_116.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_117.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_117.csproj new file mode 100644 index 0000000..2d8d38e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_117.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_118.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_118.csproj new file mode 100644 index 0000000..f493112 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_118.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_119.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_119.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_119.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_12.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_12.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_12.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_120.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_120.csproj new file mode 100644 index 0000000..60beb10 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_120.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_121.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_121.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_121.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_122.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_122.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_122.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_123.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_123.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_123.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_124.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_124.csproj new file mode 100644 index 0000000..efb1097 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_124.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_125.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_125.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_125.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_126.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_126.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_126.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_127.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_127.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_127.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_128.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_128.csproj new file mode 100644 index 0000000..f57ecaa --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_128.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_129.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_129.csproj new file mode 100644 index 0000000..460655c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_129.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_13.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_13.csproj new file mode 100644 index 0000000..bf95bc2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_13.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_130.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_130.csproj new file mode 100644 index 0000000..06442b9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_130.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_131.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_131.csproj new file mode 100644 index 0000000..a1a0b36 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_131.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_132.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_132.csproj new file mode 100644 index 0000000..e546eea --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_132.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_133.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_133.csproj new file mode 100644 index 0000000..6038dd2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_133.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_134.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_134.csproj new file mode 100644 index 0000000..e2f9d58 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_134.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_135.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_135.csproj new file mode 100644 index 0000000..0db1126 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_135.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_136.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_136.csproj new file mode 100644 index 0000000..6838099 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_136.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_137.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_137.csproj new file mode 100644 index 0000000..f1ba385 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_137.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_138.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_138.csproj new file mode 100644 index 0000000..5ffa556 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_138.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_139.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_139.csproj new file mode 100644 index 0000000..3e95b02 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_139.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_14.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_14.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_14.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_140.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_140.csproj new file mode 100644 index 0000000..3e95b02 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_140.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_141.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_141.csproj new file mode 100644 index 0000000..c9314f9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_141.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_142.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_142.csproj new file mode 100644 index 0000000..c9314f9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_142.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_143.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_143.csproj new file mode 100644 index 0000000..18d27b6 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_143.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_144.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_144.csproj new file mode 100644 index 0000000..2e5f255 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_144.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_145.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_145.csproj new file mode 100644 index 0000000..b94d3d1 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_145.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_146.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_146.csproj new file mode 100644 index 0000000..5916c74 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_146.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_147.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_147.csproj new file mode 100644 index 0000000..ef32aa8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_147.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_148.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_148.csproj new file mode 100644 index 0000000..141e205 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_148.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_149.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_149.csproj new file mode 100644 index 0000000..e2d9647 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_149.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_15.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_15.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_15.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_150.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_150.csproj new file mode 100644 index 0000000..e2d9647 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_150.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_151.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_151.csproj new file mode 100644 index 0000000..e2d9647 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_151.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_152.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_152.csproj new file mode 100644 index 0000000..6fc13dc --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_152.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_153.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_153.csproj new file mode 100644 index 0000000..1f3f703 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_153.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_154.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_154.csproj new file mode 100644 index 0000000..546b43d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_154.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_155.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_155.csproj new file mode 100644 index 0000000..ec23869 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_155.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_156.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_156.csproj new file mode 100644 index 0000000..ec23869 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_156.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_157.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_157.csproj new file mode 100644 index 0000000..ec23869 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_157.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_158.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_158.csproj new file mode 100644 index 0000000..a3f5fd0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_158.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_159.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_159.csproj new file mode 100644 index 0000000..ec23869 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_159.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_16.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_16.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_16.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_160.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_160.csproj new file mode 100644 index 0000000..a2edfc0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_160.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_161.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_161.csproj new file mode 100644 index 0000000..e0baf94 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_161.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_162.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_162.csproj new file mode 100644 index 0000000..96336cf --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_162.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_163.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_163.csproj new file mode 100644 index 0000000..b75953b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_163.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_164.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_164.csproj new file mode 100644 index 0000000..6a58176 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_164.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_165.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_165.csproj new file mode 100644 index 0000000..8a11924 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_165.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_166.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_166.csproj new file mode 100644 index 0000000..4634e41 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_166.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_167.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_167.csproj new file mode 100644 index 0000000..bfd81c2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_167.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_168.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_168.csproj new file mode 100644 index 0000000..55259a9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_168.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_169.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_169.csproj new file mode 100644 index 0000000..bccf110 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_169.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_17.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_17.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_17.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_170.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_170.csproj new file mode 100644 index 0000000..55259a9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_170.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_171.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_171.csproj new file mode 100644 index 0000000..200386e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_171.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_172.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_172.csproj new file mode 100644 index 0000000..c7de1bb --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_172.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_173.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_173.csproj new file mode 100644 index 0000000..aa44194 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_173.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_174.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_174.csproj new file mode 100644 index 0000000..0efdaf3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_174.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_175.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_175.csproj new file mode 100644 index 0000000..ef8c34d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_175.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_176.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_176.csproj new file mode 100644 index 0000000..de07798 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_176.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_177.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_177.csproj new file mode 100644 index 0000000..4d8939e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_177.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_178.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_178.csproj new file mode 100644 index 0000000..cab5060 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_178.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_179.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_179.csproj new file mode 100644 index 0000000..7292be2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_179.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 8517 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_18.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_18.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_18.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_180.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_180.csproj new file mode 100644 index 0000000..bccf110 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_180.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_181.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_181.csproj new file mode 100644 index 0000000..bdcca17 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_181.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_182.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_182.csproj new file mode 100644 index 0000000..8da744c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_182.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_183.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_183.csproj new file mode 100644 index 0000000..2ddeaaf --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_183.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_184.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_184.csproj new file mode 100644 index 0000000..ac05dbd --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_184.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_185.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_185.csproj new file mode 100644 index 0000000..bd12f67 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_185.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_186.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_186.csproj new file mode 100644 index 0000000..bcf66b3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_186.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_187.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_187.csproj new file mode 100644 index 0000000..635dda4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_187.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_188.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_188.csproj new file mode 100644 index 0000000..2cbf1ff --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_188.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_189.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_189.csproj new file mode 100644 index 0000000..1705cdb --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_189.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_19.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_19.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_19.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_190.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_190.csproj new file mode 100644 index 0000000..55a0bda --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_190.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_191.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_191.csproj new file mode 100644 index 0000000..178fc8e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_191.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_192.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_192.csproj new file mode 100644 index 0000000..686248d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_192.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_193.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_193.csproj new file mode 100644 index 0000000..7a3dde0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_193.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_194.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_194.csproj new file mode 100644 index 0000000..16e4341 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_194.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_195.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_195.csproj new file mode 100644 index 0000000..e098c19 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_195.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 7 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_196.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_196.csproj new file mode 100644 index 0000000..6838099 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_196.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_197.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_197.csproj new file mode 100644 index 0000000..efb1097 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_197.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_198.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_198.csproj new file mode 100644 index 0000000..18d27b6 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_198.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_199.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_199.csproj new file mode 100644 index 0000000..b75953b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_199.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_2.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_2.csproj new file mode 100644 index 0000000..bf95bc2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_2.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_20.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_20.csproj new file mode 100644 index 0000000..2d8d38e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_20.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_200.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_200.csproj new file mode 100644 index 0000000..5e48bd4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_200.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_201.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_201.csproj new file mode 100644 index 0000000..0960054 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_201.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_202.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_202.csproj new file mode 100644 index 0000000..215d608 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_202.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_203.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_203.csproj new file mode 100644 index 0000000..6fc13dc --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_203.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_204.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_204.csproj new file mode 100644 index 0000000..c7de1bb --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_204.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_205.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_205.csproj new file mode 100644 index 0000000..6be4dc9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_205.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 30000 -sdc 6000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_206.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_206.csproj new file mode 100644 index 0000000..7c0725c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_206.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 6000 -lt 2 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_207.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_207.csproj new file mode 100644 index 0000000..db67960 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_207.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_208.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_208.csproj new file mode 100644 index 0000000..9dfa7df --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_208.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_209.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_209.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_209.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_21.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_21.csproj new file mode 100644 index 0000000..f493112 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_21.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_210.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_210.csproj new file mode 100644 index 0000000..60beb10 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_210.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_211.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_211.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_211.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_212.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_212.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_212.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_213.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_213.csproj new file mode 100644 index 0000000..28f032d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_213.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_214.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_214.csproj new file mode 100644 index 0000000..bf95bc2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_214.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_215.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_215.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_215.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_216.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_216.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_216.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_217.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_217.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_217.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_218.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_218.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_218.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_219.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_219.csproj new file mode 100644 index 0000000..5d02fc1 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_219.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_22.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_22.csproj new file mode 100644 index 0000000..08831f8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_22.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_220.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_220.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_220.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_221.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_221.csproj new file mode 100644 index 0000000..60beb10 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_221.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_222.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_222.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_222.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_223.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_223.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_223.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_224.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_224.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_224.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_225.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_225.csproj new file mode 100644 index 0000000..bf95bc2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_225.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_226.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_226.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_226.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_227.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_227.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_227.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_228.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_228.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_228.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_229.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_229.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_229.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_23.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_23.csproj new file mode 100644 index 0000000..f4f9e75 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_23.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_230.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_230.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_230.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_231.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_231.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_231.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_232.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_232.csproj new file mode 100644 index 0000000..2d8d38e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_232.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_233.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_233.csproj new file mode 100644 index 0000000..f493112 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_233.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_234.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_234.csproj new file mode 100644 index 0000000..08831f8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_234.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_235.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_235.csproj new file mode 100644 index 0000000..f4f9e75 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_235.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_236.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_236.csproj new file mode 100644 index 0000000..5e48bd4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_236.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_237.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_237.csproj new file mode 100644 index 0000000..9ca2dff --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_237.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_238.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_238.csproj new file mode 100644 index 0000000..b6840be --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_238.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_239.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_239.csproj new file mode 100644 index 0000000..b5bd237 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_239.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_24.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_24.csproj new file mode 100644 index 0000000..5e48bd4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_24.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_240.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_240.csproj new file mode 100644 index 0000000..a6251f9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_240.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_241.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_241.csproj new file mode 100644 index 0000000..d8463d3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_241.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_242.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_242.csproj new file mode 100644 index 0000000..f0c2b6b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_242.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_243.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_243.csproj new file mode 100644 index 0000000..4f104e0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_243.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_244.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_244.csproj new file mode 100644 index 0000000..b0e9053 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_244.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_245.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_245.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_245.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_246.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_246.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_246.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_247.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_247.csproj new file mode 100644 index 0000000..73c88ab --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_247.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_248.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_248.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_248.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_249.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_249.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_249.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_25.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_25.csproj new file mode 100644 index 0000000..9ca2dff --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_25.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_250.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_250.csproj new file mode 100644 index 0000000..5c996cc --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_250.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_251.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_251.csproj new file mode 100644 index 0000000..28d0de7 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_251.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_252.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_252.csproj new file mode 100644 index 0000000..7926d5a --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_252.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_253.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_253.csproj new file mode 100644 index 0000000..b12a386 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_253.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_254.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_254.csproj new file mode 100644 index 0000000..c6394f8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_254.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_255.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_255.csproj new file mode 100644 index 0000000..0a87ec4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_255.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_256.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_256.csproj new file mode 100644 index 0000000..a16d330 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_256.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_257.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_257.csproj new file mode 100644 index 0000000..d21b025 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_257.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_258.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_258.csproj new file mode 100644 index 0000000..73c88ab --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_258.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_259.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_259.csproj new file mode 100644 index 0000000..6c2cb1c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_259.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_26.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_26.csproj new file mode 100644 index 0000000..b6840be --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_26.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_260.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_260.csproj new file mode 100644 index 0000000..909a76a --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_260.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_261.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_261.csproj new file mode 100644 index 0000000..e20906b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_261.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_262.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_262.csproj new file mode 100644 index 0000000..c5013c5 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_262.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_263.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_263.csproj new file mode 100644 index 0000000..a75ccd3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_263.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_264.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_264.csproj new file mode 100644 index 0000000..af2629b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_264.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_265.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_265.csproj new file mode 100644 index 0000000..8092737 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_265.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_266.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_266.csproj new file mode 100644 index 0000000..8ffc7a0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_266.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_267.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_267.csproj new file mode 100644 index 0000000..a34317b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_267.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_268.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_268.csproj new file mode 100644 index 0000000..f04abc8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_268.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_269.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_269.csproj new file mode 100644 index 0000000..3c92258 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_269.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_27.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_27.csproj new file mode 100644 index 0000000..b5bd237 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_27.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_270.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_270.csproj new file mode 100644 index 0000000..4f9e008 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_270.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_271.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_271.csproj new file mode 100644 index 0000000..0c9bc5f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_271.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_272.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_272.csproj new file mode 100644 index 0000000..7a3a380 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_272.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_273.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_273.csproj new file mode 100644 index 0000000..124c5ec --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_273.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_274.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_274.csproj new file mode 100644 index 0000000..6dbbbe4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_274.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_275.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_275.csproj new file mode 100644 index 0000000..9bac5d0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_275.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_276.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_276.csproj new file mode 100644 index 0000000..d37b14d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_276.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_277.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_277.csproj new file mode 100644 index 0000000..e586ea3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_277.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_278.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_278.csproj new file mode 100644 index 0000000..b4cc86c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_278.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_279.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_279.csproj new file mode 100644 index 0000000..223ae5e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_279.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_28.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_28.csproj new file mode 100644 index 0000000..a6251f9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_28.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_280.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_280.csproj new file mode 100644 index 0000000..3c92258 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_280.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_281.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_281.csproj new file mode 100644 index 0000000..b755894 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_281.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_282.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_282.csproj new file mode 100644 index 0000000..882f391 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_282.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_283.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_283.csproj new file mode 100644 index 0000000..7b1f2c4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_283.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_284.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_284.csproj new file mode 100644 index 0000000..581da7e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_284.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_285.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_285.csproj new file mode 100644 index 0000000..f7db43c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_285.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_286.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_286.csproj new file mode 100644 index 0000000..29704fd --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_286.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_287.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_287.csproj new file mode 100644 index 0000000..a5f7200 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_287.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_288.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_288.csproj new file mode 100644 index 0000000..c8de854 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_288.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_289.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_289.csproj new file mode 100644 index 0000000..3ca7881 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_289.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_29.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_29.csproj new file mode 100644 index 0000000..d8463d3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_29.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_290.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_290.csproj new file mode 100644 index 0000000..a1b4a61 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_290.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_291.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_291.csproj new file mode 100644 index 0000000..798e06d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_291.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_292.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_292.csproj new file mode 100644 index 0000000..3cda5a5 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_292.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_293.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_293.csproj new file mode 100644 index 0000000..cec754a --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_293.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_294.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_294.csproj new file mode 100644 index 0000000..bf2eb93 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_294.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_295.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_295.csproj new file mode 100644 index 0000000..182e162 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_295.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_296.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_296.csproj new file mode 100644 index 0000000..9c672d1 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_296.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_297.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_297.csproj new file mode 100644 index 0000000..4081ac7 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_297.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_298.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_298.csproj new file mode 100644 index 0000000..7f96180 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_298.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_299.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_299.csproj new file mode 100644 index 0000000..0162adf --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_299.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_3.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_3.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_3.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_30.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_30.csproj new file mode 100644 index 0000000..f0c2b6b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_30.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_300.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_300.csproj new file mode 100644 index 0000000..a5c541b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_300.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_301.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_301.csproj new file mode 100644 index 0000000..40b20d4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_301.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_302.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_302.csproj new file mode 100644 index 0000000..e9dfeaf --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_302.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_303.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_303.csproj new file mode 100644 index 0000000..d7b72f8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_303.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_304.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_304.csproj new file mode 100644 index 0000000..eb49b88 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_304.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_305.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_305.csproj new file mode 100644 index 0000000..b10fb92 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_305.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_306.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_306.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_306.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_307.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_307.csproj new file mode 100644 index 0000000..60beb10 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_307.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_308.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_308.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_308.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_309.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_309.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_309.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_31.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_31.csproj new file mode 100644 index 0000000..4f104e0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_31.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_310.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_310.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_310.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_311.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_311.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_311.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_312.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_312.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_312.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_313.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_313.csproj new file mode 100644 index 0000000..6c7fcc3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_313.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_314.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_314.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_314.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_315.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_315.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_315.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_316.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_316.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_316.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_317.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_317.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_317.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_318.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_318.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_318.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_319.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_319.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_319.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_32.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_32.csproj new file mode 100644 index 0000000..b0e9053 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_32.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_320.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_320.csproj new file mode 100644 index 0000000..2d8d38e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_320.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_321.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_321.csproj new file mode 100644 index 0000000..f493112 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_321.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_322.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_322.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_322.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_323.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_323.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_323.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_324.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_324.csproj new file mode 100644 index 0000000..9dfa7df --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_324.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_325.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_325.csproj new file mode 100644 index 0000000..9036b0b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_325.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_326.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_326.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_326.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_327.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_327.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_327.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_328.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_328.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_328.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_329.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_329.csproj new file mode 100644 index 0000000..2d8d38e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_329.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_33.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_33.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_33.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_330.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_330.csproj new file mode 100644 index 0000000..f493112 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_330.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_331.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_331.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_331.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_332.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_332.csproj new file mode 100644 index 0000000..60beb10 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_332.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_333.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_333.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_333.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_334.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_334.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_334.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_335.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_335.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_335.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_336.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_336.csproj new file mode 100644 index 0000000..efb1097 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_336.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_337.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_337.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_337.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_338.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_338.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_338.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_339.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_339.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_339.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_34.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_34.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_34.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_340.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_340.csproj new file mode 100644 index 0000000..f57ecaa --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_340.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_341.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_341.csproj new file mode 100644 index 0000000..460655c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_341.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_342.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_342.csproj new file mode 100644 index 0000000..06442b9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_342.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_343.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_343.csproj new file mode 100644 index 0000000..a1a0b36 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_343.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_344.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_344.csproj new file mode 100644 index 0000000..e546eea --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_344.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_345.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_345.csproj new file mode 100644 index 0000000..6038dd2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_345.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_346.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_346.csproj new file mode 100644 index 0000000..e2f9d58 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_346.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_347.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_347.csproj new file mode 100644 index 0000000..0db1126 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_347.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_348.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_348.csproj new file mode 100644 index 0000000..6838099 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_348.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_349.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_349.csproj new file mode 100644 index 0000000..f1ba385 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_349.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_35.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_35.csproj new file mode 100644 index 0000000..73c88ab --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_35.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_350.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_350.csproj new file mode 100644 index 0000000..5ffa556 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_350.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_351.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_351.csproj new file mode 100644 index 0000000..3e95b02 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_351.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_352.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_352.csproj new file mode 100644 index 0000000..3e95b02 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_352.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_353.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_353.csproj new file mode 100644 index 0000000..c9314f9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_353.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_354.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_354.csproj new file mode 100644 index 0000000..c9314f9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_354.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_355.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_355.csproj new file mode 100644 index 0000000..18d27b6 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_355.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_356.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_356.csproj new file mode 100644 index 0000000..2e5f255 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_356.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_357.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_357.csproj new file mode 100644 index 0000000..b94d3d1 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_357.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_358.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_358.csproj new file mode 100644 index 0000000..5916c74 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_358.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_359.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_359.csproj new file mode 100644 index 0000000..ef32aa8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_359.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_36.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_36.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_36.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_360.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_360.csproj new file mode 100644 index 0000000..141e205 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_360.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_361.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_361.csproj new file mode 100644 index 0000000..e2d9647 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_361.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_362.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_362.csproj new file mode 100644 index 0000000..e2d9647 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_362.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_363.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_363.csproj new file mode 100644 index 0000000..e2d9647 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_363.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_364.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_364.csproj new file mode 100644 index 0000000..6fc13dc --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_364.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_365.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_365.csproj new file mode 100644 index 0000000..1f3f703 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_365.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_366.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_366.csproj new file mode 100644 index 0000000..546b43d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_366.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_367.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_367.csproj new file mode 100644 index 0000000..ec23869 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_367.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_368.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_368.csproj new file mode 100644 index 0000000..ec23869 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_368.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_369.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_369.csproj new file mode 100644 index 0000000..ec23869 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_369.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_37.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_37.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_37.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_370.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_370.csproj new file mode 100644 index 0000000..a3f5fd0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_370.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_371.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_371.csproj new file mode 100644 index 0000000..ec23869 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_371.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_372.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_372.csproj new file mode 100644 index 0000000..a2edfc0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_372.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_373.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_373.csproj new file mode 100644 index 0000000..e0baf94 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_373.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_374.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_374.csproj new file mode 100644 index 0000000..96336cf --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_374.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_375.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_375.csproj new file mode 100644 index 0000000..b75953b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_375.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_376.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_376.csproj new file mode 100644 index 0000000..6a58176 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_376.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_377.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_377.csproj new file mode 100644 index 0000000..8a11924 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_377.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_378.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_378.csproj new file mode 100644 index 0000000..4634e41 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_378.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_379.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_379.csproj new file mode 100644 index 0000000..bfd81c2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_379.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_38.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_38.csproj new file mode 100644 index 0000000..5c996cc --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_38.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_380.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_380.csproj new file mode 100644 index 0000000..55259a9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_380.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_381.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_381.csproj new file mode 100644 index 0000000..bccf110 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_381.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_382.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_382.csproj new file mode 100644 index 0000000..55259a9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_382.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_383.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_383.csproj new file mode 100644 index 0000000..200386e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_383.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_384.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_384.csproj new file mode 100644 index 0000000..c7de1bb --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_384.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_385.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_385.csproj new file mode 100644 index 0000000..aa44194 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_385.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_386.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_386.csproj new file mode 100644 index 0000000..0efdaf3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_386.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_387.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_387.csproj new file mode 100644 index 0000000..ef8c34d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_387.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_388.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_388.csproj new file mode 100644 index 0000000..de07798 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_388.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_389.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_389.csproj new file mode 100644 index 0000000..4d8939e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_389.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_39.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_39.csproj new file mode 100644 index 0000000..28d0de7 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_39.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_390.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_390.csproj new file mode 100644 index 0000000..cab5060 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_390.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_391.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_391.csproj new file mode 100644 index 0000000..7292be2 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_391.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 8517 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_392.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_392.csproj new file mode 100644 index 0000000..bccf110 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_392.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_393.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_393.csproj new file mode 100644 index 0000000..bdcca17 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_393.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_394.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_394.csproj new file mode 100644 index 0000000..8da744c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_394.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_395.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_395.csproj new file mode 100644 index 0000000..2ddeaaf --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_395.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_396.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_396.csproj new file mode 100644 index 0000000..ac05dbd --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_396.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_397.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_397.csproj new file mode 100644 index 0000000..bd12f67 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_397.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_398.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_398.csproj new file mode 100644 index 0000000..bcf66b3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_398.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_399.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_399.csproj new file mode 100644 index 0000000..635dda4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_399.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_4.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_4.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_4.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_40.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_40.csproj new file mode 100644 index 0000000..7926d5a --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_40.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_400.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_400.csproj new file mode 100644 index 0000000..2cbf1ff --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_400.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_401.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_401.csproj new file mode 100644 index 0000000..1705cdb --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_401.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_402.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_402.csproj new file mode 100644 index 0000000..55a0bda --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_402.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_403.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_403.csproj new file mode 100644 index 0000000..178fc8e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_403.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_404.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_404.csproj new file mode 100644 index 0000000..686248d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_404.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_405.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_405.csproj new file mode 100644 index 0000000..7a3dde0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_405.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_406.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_406.csproj new file mode 100644 index 0000000..16e4341 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_406.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_407.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_407.csproj new file mode 100644 index 0000000..e098c19 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_407.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 7 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_408.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_408.csproj new file mode 100644 index 0000000..6838099 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_408.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_409.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_409.csproj new file mode 100644 index 0000000..efb1097 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_409.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_41.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_41.csproj new file mode 100644 index 0000000..b12a386 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_41.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_410.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_410.csproj new file mode 100644 index 0000000..18d27b6 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_410.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_411.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_411.csproj new file mode 100644 index 0000000..b75953b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_411.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_412.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_412.csproj new file mode 100644 index 0000000..5e48bd4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_412.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_413.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_413.csproj new file mode 100644 index 0000000..0960054 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_413.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_414.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_414.csproj new file mode 100644 index 0000000..215d608 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_414.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_415.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_415.csproj new file mode 100644 index 0000000..6fc13dc --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_415.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_416.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_416.csproj new file mode 100644 index 0000000..c7de1bb --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_416.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_417.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_417.csproj new file mode 100644 index 0000000..6be4dc9 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_417.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 30000 -sdc 6000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_418.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_418.csproj new file mode 100644 index 0000000..7c0725c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_418.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 6000 -lt 2 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_419.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_419.csproj new file mode 100644 index 0000000..db67960 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_419.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_42.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_42.csproj new file mode 100644 index 0000000..c6394f8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_42.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_420.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_420.csproj new file mode 100644 index 0000000..9dfa7df --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_420.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_421.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_421.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_421.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_422.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_422.csproj new file mode 100644 index 0000000..60beb10 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_422.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_423.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_423.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_423.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_424.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_424.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_424.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_425.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_425.csproj new file mode 100644 index 0000000..d4bc397 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_425.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 7 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.1 -dw 0.0 -f + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_426.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_426.csproj new file mode 100644 index 0000000..f3f4b37 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_426.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 8 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.2 -dw 0.0 -f + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_427.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_427.csproj new file mode 100644 index 0000000..88cb16c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_427.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 10 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.2 -dw 0.0 -f + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_428.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_428.csproj new file mode 100644 index 0000000..d35da3c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_428.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 10 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.3 -dw 0.0 -f + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_429.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_429.csproj new file mode 100644 index 0000000..b1fa921 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_429.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 8 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.3 -dw 0.1 -f + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_43.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_43.csproj new file mode 100644 index 0000000..0a87ec4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_43.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_430.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_430.csproj new file mode 100644 index 0000000..3ca7881 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_430.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_431.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_431.csproj new file mode 100644 index 0000000..f493112 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_431.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_432.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_432.csproj new file mode 100644 index 0000000..ef32aa8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_432.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_44.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_44.csproj new file mode 100644 index 0000000..a16d330 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_44.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_45.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_45.csproj new file mode 100644 index 0000000..d21b025 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_45.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_46.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_46.csproj new file mode 100644 index 0000000..73c88ab --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_46.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_47.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_47.csproj new file mode 100644 index 0000000..6c2cb1c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_47.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_48.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_48.csproj new file mode 100644 index 0000000..909a76a --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_48.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_49.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_49.csproj new file mode 100644 index 0000000..e20906b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_49.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_5.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_5.csproj new file mode 100644 index 0000000..c1d451f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_5.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_50.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_50.csproj new file mode 100644 index 0000000..c5013c5 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_50.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_51.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_51.csproj new file mode 100644 index 0000000..a75ccd3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_51.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_52.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_52.csproj new file mode 100644 index 0000000..af2629b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_52.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_53.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_53.csproj new file mode 100644 index 0000000..8092737 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_53.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_54.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_54.csproj new file mode 100644 index 0000000..8ffc7a0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_54.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_55.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_55.csproj new file mode 100644 index 0000000..a34317b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_55.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_56.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_56.csproj new file mode 100644 index 0000000..f04abc8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_56.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_57.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_57.csproj new file mode 100644 index 0000000..3c92258 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_57.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_58.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_58.csproj new file mode 100644 index 0000000..4f9e008 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_58.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_59.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_59.csproj new file mode 100644 index 0000000..0c9bc5f --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_59.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_6.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_6.csproj new file mode 100644 index 0000000..fb8209c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_6.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_60.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_60.csproj new file mode 100644 index 0000000..7a3a380 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_60.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_61.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_61.csproj new file mode 100644 index 0000000..124c5ec --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_61.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_62.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_62.csproj new file mode 100644 index 0000000..6dbbbe4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_62.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_63.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_63.csproj new file mode 100644 index 0000000..9bac5d0 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_63.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_64.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_64.csproj new file mode 100644 index 0000000..d37b14d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_64.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_65.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_65.csproj new file mode 100644 index 0000000..e586ea3 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_65.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_66.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_66.csproj new file mode 100644 index 0000000..b4cc86c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_66.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_67.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_67.csproj new file mode 100644 index 0000000..223ae5e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_67.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_68.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_68.csproj new file mode 100644 index 0000000..3c92258 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_68.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_69.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_69.csproj new file mode 100644 index 0000000..b755894 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_69.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_7.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_7.csproj new file mode 100644 index 0000000..5d02fc1 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_7.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_70.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_70.csproj new file mode 100644 index 0000000..882f391 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_70.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_71.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_71.csproj new file mode 100644 index 0000000..7b1f2c4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_71.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_72.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_72.csproj new file mode 100644 index 0000000..581da7e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_72.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_73.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_73.csproj new file mode 100644 index 0000000..f7db43c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_73.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_74.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_74.csproj new file mode 100644 index 0000000..29704fd --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_74.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_75.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_75.csproj new file mode 100644 index 0000000..a5f7200 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_75.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_76.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_76.csproj new file mode 100644 index 0000000..c8de854 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_76.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_77.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_77.csproj new file mode 100644 index 0000000..3ca7881 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_77.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_78.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_78.csproj new file mode 100644 index 0000000..a1b4a61 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_78.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_79.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_79.csproj new file mode 100644 index 0000000..798e06d --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_79.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.8 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_8.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_8.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_8.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_80.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_80.csproj new file mode 100644 index 0000000..3cda5a5 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_80.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_81.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_81.csproj new file mode 100644 index 0000000..cec754a --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_81.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_82.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_82.csproj new file mode 100644 index 0000000..bf2eb93 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_82.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_83.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_83.csproj new file mode 100644 index 0000000..182e162 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_83.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_84.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_84.csproj new file mode 100644 index 0000000..9c672d1 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_84.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_85.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_85.csproj new file mode 100644 index 0000000..4081ac7 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_85.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_86.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_86.csproj new file mode 100644 index 0000000..7f96180 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_86.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_87.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_87.csproj new file mode 100644 index 0000000..0162adf --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_87.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_88.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_88.csproj new file mode 100644 index 0000000..a5c541b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_88.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_89.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_89.csproj new file mode 100644 index 0000000..40b20d4 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_89.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_9.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_9.csproj new file mode 100644 index 0000000..60beb10 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_9.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_90.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_90.csproj new file mode 100644 index 0000000..e9dfeaf --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_90.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_91.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_91.csproj new file mode 100644 index 0000000..d7b72f8 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_91.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_92.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_92.csproj new file mode 100644 index 0000000..eb49b88 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_92.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_93.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_93.csproj new file mode 100644 index 0000000..b10fb92 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_93.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_94.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_94.csproj new file mode 100644 index 0000000..c4d428e --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_94.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_95.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_95.csproj new file mode 100644 index 0000000..60beb10 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_95.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_96.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_96.csproj new file mode 100644 index 0000000..b9d1327 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_96.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_97.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_97.csproj new file mode 100644 index 0000000..38c3498 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_97.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_98.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_98.csproj new file mode 100644 index 0000000..b010a3b --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_98.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_99.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_99.csproj new file mode 100644 index 0000000..2b7b534 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_99.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + Properties + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages + ..\..\ + true + 7a9bfb7d + $(DefineConstants);STATIC;PROJECTK_BUILD + -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 + true + + + + + + + + + False + + + + + + + + + + + + $(GCPackagesConfigFileDirectory)extra\project.json + $(GCPackagesConfigFileDirectory)extra\project.lock.json + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/app.config b/tests/src/GC/Scenarios/GCSimulator/app.config new file mode 100644 index 0000000..c51f616 --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/app.config @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/src/GC/Scenarios/GCSimulator/lifetimefx.cs b/tests/src/GC/Scenarios/GCSimulator/lifetimefx.cs new file mode 100644 index 0000000..5356b6c --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/lifetimefx.cs @@ -0,0 +1,310 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +/* + * A Simple Framework to manage the life time of of objects + * Objects are required to implement LifeTime Interface in order to keep track of their lifetime. + * TODO: we need to add flexibility to the framework to control the type of datastructure used to keep track + * of the objects. Right now we are using a simple 1 D array , but other interesting datastructures can be + * used instead like a HashTable. + */ +using System; +using System.Collections.Generic; + +namespace LifeTimeFX +{ + public enum LifeTimeENUM + { + Short, + Medium, + Long + } + + public interface LifeTime + { + LifeTimeENUM LifeTime + { + get; + set; + } + + } + + public interface LifeTimeStrategy + { + int NextObject(LifeTimeENUM lifeTime); + bool ShouldDie(LifeTime o, int index); + } + + /// + /// This interfact abstract the object contaienr , allowing us to specify differnt datastructures + /// implementation. + /// The only restriction on the ObjectContainer is that the objects contained in it must implement + /// LifeTime interface. + /// Right now we have a simple array container as a stock implementation for that. for more information + /// see code:#ArrayContainer + /// + /// + /// + + public interface ObjectContainer where T:LifeTime + { + void Init(int numberOfObjects); + void AddObjectAt(T o, int index); + T GetObject(int index); + T SetObjectAt(T o , int index); + int Count + { + get; + } + } + + + public sealed class BinaryTreeObjectContainer : ObjectContainer where T:LifeTime + { + + class Node + { + public Node LeftChild; + public Node RightChild; + public int id; + public T Data; + + } + + + + private Node root; + private int count; + + public BinaryTreeObjectContainer() + { + root = null; + count = 0; + } + + public void Init(int numberOfObjects) + { + + if (numberOfObjects<=0) + { + return; + } + + root = new Node(); + root.id = 0; + count = numberOfObjects; + if (numberOfObjects>1) + { + int depth = (int)Math.Log(numberOfObjects,2)+1; + + root.LeftChild = CreateTree(depth-1, 1); + root.RightChild = CreateTree(depth-1, 2); + } + + + } + + public void AddObjectAt(T o, int index) + { + Node node = Find(index); + + if (node!=null) + { + node.Data = o; + } + + } + + + public T GetObject(int index) + { + + + Node node = Find(index); + + if (node==null) + { + return default(T); + } + + return node.Data; + + } + + public T SetObjectAt(T o , int index) + { + + Node node = Find(index); + + if (node==null) + { + return default(T); + } + + T old = node.Data; + node.Data = o; + return old; + + } + + public int Count + { + get + { + return count; + } + } + + + + private Node CreateTree(int depth, int id) + { + if (depth<=0) + { + return null; + } + + Node node = new Node(); + node.id = id; + node.LeftChild = CreateTree(depth-1, id*2+1); + node.RightChild = CreateTree(depth-1, id*2+2); + + return node; + } + + private Node Find(int id) + { + + List path = new List(); + + // find the path from node to root + int n=id; + while (n>0) + { + path.Add(n); + n = (int)Math.Ceiling( ((double)n/2.0) ) - 1; + } + + // follow the path from root to node + Node node = root; + for (int i=path.Count-1; i>=0; i--) + { + if (path[i]==(id*2+1)) + { + node = node.LeftChild; + } + else + { + node = node.RightChild; + } + + } + + return node; + } + + } + + + +//#ArrayContainer Simple Array Stock Implemntation for ObjectContainer + public sealed class ArrayObjectContainer : ObjectContainer where T:LifeTime + { + private T[] objContainer = null; + public void Init(int numberOfObjects) + { + objContainer = new T[numberOfObjects]; + + } + + public void AddObjectAt(T o, int index) + { + objContainer[index] = o; + } + + public T GetObject(int index) + { + return objContainer[index]; + } + + public T SetObjectAt(T o, int index) + { + T old = objContainer[index]; + objContainer[index] = o; + return old; + } + + public int Count + { + get + { + return objContainer.Length; + } + } + } + + + + public delegate void ObjectDiedEventHandler(LifeTime o, int index ); + + public sealed class ObjectLifeTimeManager + { + private LifeTimeStrategy strategy; + + private ObjectContainer objectContainer = null; + // + + public void SetObjectContainer (ObjectContainer objectContainer) + { + this.objectContainer = objectContainer; + } + + public event ObjectDiedEventHandler objectDied; + + public void Init(int numberObjects) + { + objectContainer.Init(numberObjects); + //objContainer = new object[numberObjects]; + } + + public LifeTimeStrategy LifeTimeStrategy + { + set + { + strategy = value; + } + } + + public void AddObject(LifeTime o, int index) + { + objectContainer.AddObjectAt(o, index); + //objContainer[index] = o; + } + + public void Run() + { + + + LifeTime objLifeTime; + + for (int i = 0; i < objectContainer.Count; ++i) + { + objLifeTime = objectContainer.GetObject(i); + //object o = objContainer[i]; + //objLifeTime = o as LifeTime; + + if (strategy.ShouldDie(objLifeTime, i)) + { + int index = strategy.NextObject(objLifeTime.LifeTime); + LifeTime oldObject = objectContainer.SetObjectAt(null, index); + //objContainer[index] = null; + // fire the event + objectDied(oldObject, index); + } + + } + } + } +} diff --git a/tests/testsFailingOutsideWindows.txt b/tests/testsFailingOutsideWindows.txt index 8049d7f..055d098 100644 --- a/tests/testsFailingOutsideWindows.txt +++ b/tests/testsFailingOutsideWindows.txt @@ -169,17 +169,8 @@ GC/Scenarios/DoublinkList/doublinknoleak/doublinknoleak.sh GC/Scenarios/BaseFinal/basefinal/basefinal.sh GC/Coverage/smalloom/smalloom.sh GC/Coverage/271010/271010.sh -GC/Features/BackgroundGC/concurrentspin2/concurrentspin2.sh GC/Features/BackgroundGC/foregroundgc/foregroundgc.sh -GC/Features/LOHCompaction/lohcompact_stress/lohcompact_stress.sh -GC/Features/LOHCompaction/lohcompactscenariorepro/lohcompactscenariorepro.sh -GC/Features/LOHCompaction/lohcompactapi2/lohcompactapi2.sh GC/Features/LOHFragmentation/lohfragmentation/lohfragmentation.sh -GC/Features/PartialCompaction/partialcompactiontest/partialcompactiontest.sh -GC/Features/PartialCompaction/partialcompactionwloh/partialcompactionwloh.sh -GC/Features/PartialCompaction/eco1/eco1.sh -GC/Features/SustainedLowLatency/sustainedlowlatency_race_reverse/sustainedlowlatency_race_reverse.sh GC/Features/SustainedLowLatency/scenario/scenario.sh -GC/Features/SustainedLowLatency/sustainedlowlatency_race/sustainedlowlatency_race.sh GC/Regressions/dev10bugs/536168/536168/536168.sh GC/Stress/Framework/ReliabilityFramework/ReliabilityFramework.sh diff --git a/tests/x86_legacy_backend_issues.targets b/tests/x86_legacy_backend_issues.targets index 4c6ce91..5191664 100644 --- a/tests/x86_legacy_backend_issues.targets +++ b/tests/x86_legacy_backend_issues.targets @@ -472,42 +472,15 @@ 3392 - - 3392 - 3392 - - 3392 - - - 3392 - - - 3392 - 3392 - - 3392 - - - 3392 - - - 3392 - - - 3392 - 3392 - - 3392 - 3392