-
Notifications
You must be signed in to change notification settings - Fork 4
/
Adapter.BTS2016.txt
7566 lines (7356 loc) · 518 KB
/
Adapter.BTS2016.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Build started 5/18/2018 10:37:37 AM.
Environment at start of build:
ALLUSERSPROFILE = C:\ProgramData
APPDATA = C:\Users\Administrator\AppData\Roaming
BPADir = C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power Tools\Best Practices Analyzer\
BTSCOMMONFILES = C:\Program Files (x86)\Common Files\Microsoft BizTalk
BTSINSTALLPATH = C:\Program Files (x86)\Microsoft BizTalk Server 2016\
CLIENTNAME = CYBE-WIN-HP01
CommonProgramFiles = C:\Program Files (x86)\Common Files
CommonProgramFiles(x86) = C:\Program Files (x86)\Common Files
CommonProgramW6432 = C:\Program Files\Common Files
COMPUTERNAME = WIN-E9R8OHM2P1P
ComSpec = C:\Windows\system32\cmd.exe
FP_NO_HOST_CHECK = NO
HOMEDRIVE = C:
HOMEPATH = \Users\Administrator
lib = C:\Program Files (x86)\SQLXML 4.0\bin\;C:\Program Files\SQLXML 4.0\bin\
LOCALAPPDATA = C:\Users\Administrator\AppData\Local
LOGONSERVER = \\WIN-E9R8OHM2P1P
MSBuildLoadMicrosoftTargetsReadOnly = true
NUMBER_OF_PROCESSORS = 4
OS = Windows_NT
Path = C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power Tools\;C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power Tools\Best Practices Analyzer\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft BizTalk Server 2016\;C:\Program Files (x86)\Microsoft BizTalk Server 2016\Bins32;C:\Program Files (x86)\Microsoft BizTalk Server 2016\Bins64;C:\Program Files\dotnet\;C:\Program Files\nodejs\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files (x86)\Microsoft Emulator Manager\1.0\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\;C:\Users\Administrator\AppData\Roaming\npm
PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
PROCESSOR_ARCHITECTURE = x86
PROCESSOR_ARCHITEW6432 = AMD64
PROCESSOR_IDENTIFIER = Intel64 Family 6 Model 78 Stepping 3, GenuineIntel
PROCESSOR_LEVEL = 6
PROCESSOR_REVISION = 4e03
ProgramData = C:\ProgramData
ProgramFiles = C:\Program Files (x86)
ProgramFiles(x86) = C:\Program Files (x86)
ProgramW6432 = C:\Program Files
PROMPT = $P$G
PSModulePath = C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\130\Tools\PowerShell\Modules\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\PowerShell\Modules\;C:\Program Files\WindowsPowerShell\Modules\;C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ResourceManager\AzureResourceManager\;C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement\;C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\Storage\
PUBLIC = C:\Users\Public
SESSIONNAME = 31C5CE94259D4006A9E4#0
SystemDrive = C:
SystemRoot = C:\Windows
TEMP = C:\Users\ADMINI~1\AppData\Local\Temp\2
TFSPowerToolDir = C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power Tools\
TMP = C:\Users\ADMINI~1\AppData\Local\Temp\2
USERDOMAIN = WIN-E9R8OHM2P1P
USERDOMAIN_ROAMINGPROFILE = WIN-E9R8OHM2P1P
USERNAME = Administrator
USERPROFILE = C:\Users\Administrator
VS110COMNTOOLS = C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\
VS120COMNTOOLS = C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\
VS140COMNTOOLS = C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\
windir = C:\Windows
WIX = C:\Program Files (x86)\WiX Toolset v3.8\
Overriding target "GetFrameworkPaths" in project "C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" with target "GetFrameworkPaths" from project "C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.targets".
Overriding target "SatelliteDllsProjectOutputGroup" in project "C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" with target "SatelliteDllsProjectOutputGroup" from project "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.WinFx.targets".
Project "C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\TransMock.Wcf.Adapter.BTS2016.csproj" on node 1 (Rebuild target(s)).
Initial Properties:
_AfterCompileWinFXInternalDependsOn =
PrepareResourcesForSatelliteAssemblies;
MergeLocalizationDirectives;
AfterCompileWinFX
_CompileTargetNameForLocalType = _CompileTemporaryAssembly
_DebugSymbolsProduced = true
_DeploymentApplicationManifestIdentity = Native.TransMock.Wcf.Adapter
_DeploymentBuiltUpdateInterval = 0
_DeploymentBuiltUpdateIntervalUnits = Days
_DeploymentDeployManifestIdentity = TransMock.Wcf.Adapter.application
_DeploymentFileMappingExtension = .deploy
_DeploymentTargetApplicationManifestFileName = Native.TransMock.Wcf.Adapter.manifest
_DeploymentUrl =
_DocumentationFileProduced = false
_GenerateBindingRedirectsIntermediateAppConfig = obj\Release\TransMock.Wcf.Adapter.BTS2016.csproj.TransMock.Wcf.Adapter.dll.config
_GetChildProjectCopyToOutputDirectoryItems = true
_NuGetRuntimeIdentifierWithoutAot = win
_OriginalConfiguration = Release
_OriginalPlatform = AnyCPU
_ProjectDefaultTargets = Build
_ProjectSpecificProjectJsonFile = TransMock.Wcf.Adapter.BTS2016.project.json
_RequireMCPass2ForMainAssembly = false
_RequireMCPass2ForSatelliteAssemblyOnly = false
_ResolveReferenceDependencies = false
_ResourceNameInMainAssembly = TransMock.Wcf.Adapter.g.resources
_SGenDllCreated = false
_SGenDllName = TransMock.Wcf.Adapter.XmlSerializers.dll
_SGenGenerateSerializationAssembliesConfig = Auto
AddAdditionalExplicitAssemblyReferences = true
AddBuildInfoToAssembly = false
AdditionalExplicitAssemblyReferences = System.Core;
AllowedReferenceAssemblyFileExtensions =
.winmd;
.dll;
.exe
AllowedReferenceRelatedFileExtensions =
.pdb;
.xml;
.pri
ALLUSERSPROFILE = C:\ProgramData
AlwaysCompileMarkupFilesInSeparateDomain = true
AlwaysUseNumericalSuffixInItemNames = true
APPDATA = C:\Users\Administrator\AppData\Roaming
AppDesignerFolder = Properties
ApplicationRevision = 0
ApplicationVersion = 1.0.0.*
AssemblyFoldersSuffix = AssemblyFoldersEx
AssemblyName = TransMock.Wcf.Adapter
AssemblyOriginatorKeyFile = ..\..\Key\TransMock.snk
AssemblySearchPaths =
{CandidateAssemblyFiles};
;
{HintPathFromItem};
{TargetFrameworkDirectory};
{Registry:Software\Microsoft\.NETFramework,v4.6,AssemblyFoldersEx};
{AssemblyFolders};
{GAC};
{RawFileName};
bin\Release\net46\
AssignTargetPathsDependsOn =
AutoUnifyAssemblyReferences = true
AvailablePlatforms = Any CPU,x86,x64
BaseIntermediateOutputPath = obj\
BaseNuGetRuntimeIdentifier = win
BootstrapperEnabled = true
BPADir = C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power Tools\Best Practices Analyzer\
BTSCOMMONFILES = C:\Program Files (x86)\Common Files\Microsoft BizTalk
BTSINSTALLPATH = C:\Program Files (x86)\Microsoft BizTalk Server 2016\
BuildCompileAction = Build
BuildDependsOn =
EntityDeploy;
BeforeBuild;
CoreBuild;
AfterBuild
BuildGenerateSourcesAction = Build
BuildInfoBinPath = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\BuildInfo
BuildInfoTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\BuildInfo\Microsoft.VisualStudio.ReleaseManagement.BuildInfo.targets
BuildingProject = false
BuildInParallel = true
BuildLinkAction = Build
BuildProjectReferences = true
BuildSystem = MSBuild
BuildTaskAssembly = PresentationBuildTasks, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
BuiltProjectOutputGroupDependsOn = PrepareForBuild
CleanDependsOn =
BeforeClean;
UnmanagedUnregistration;
CoreClean;
CleanReferencedProjects;
CleanPublishFolder;
AfterClean
;
EntityClean;
CleanFile = TransMock.Wcf.Adapter.BTS2016.csproj.FileListAbsolute.txt
CLIENTNAME = CYBE-WIN-HP01
CodeAnalysisApplyLogFileXsl = false
CodeAnalysisFailOnMissingRules = false
CodeAnalysisForceOutput = true
CodeAnalysisGenerateSuccessFile = true
CodeAnalysisIgnoreGeneratedCode = true
CodeAnalysisIgnoreInvalidTargets = true
CodeAnalysisIgnoreMissingIndirectReferences = false
CodeAnalysisInputAssembly = bin\Release\net46\TransMock.Wcf.Adapter.dll
CodeAnalysisLogFile = bin\Release\net46\TransMock.Wcf.Adapter.dll.CodeAnalysisLog.xml
CodeAnalysisModuleSuppressionsFile = GlobalSuppressions.cs
CodeAnalysisOutputToConsole = false
CodeAnalysisOverrideRuleVisibilities = false
CodeAnalysisPath = C:\Program Files (x86)\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\FxCop\
CodeAnalysisQuiet = false
CodeAnalysisRuleDirectories = ;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\FxCop\\Rules
CodeAnalysisRuleSet = AllRules.ruleset
CodeAnalysisRuleSetDirectories = ;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\\Rule Sets
CodeAnalysisSaveMessagesToReport = Active
CodeAnalysisSearchGlobalAssemblyCache = true
CodeAnalysisStaticAnalysisDirectory = C:\Program Files (x86)\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\
CodeAnalysisSucceededFile = bin\Release\net46\TransMock.Wcf.Adapter.dll.lastcodeanalysissucceeded
CodeAnalysisSummary = false
CodeAnalysisTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\CodeAnalysis\Microsoft.CodeAnalysis.targets
CodeAnalysisTimeout = 120
CodeAnalysisTreatWarningsAsErrors = false
CodeAnalysisUpdateProject = false
CodeAnalysisUseTypeNameInSuppression = true
CodeAnalysisVerbose = false
CommonProgramFiles = C:\Program Files (x86)\Common Files
CommonProgramW6432 = C:\Program Files\Common Files
CommonTargetsPath = C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets
CommonXamlResourcesDirectory = C:\Program Files (x86)\MSBuild\14.0\bin\\
CompileDependsOn =
ResolveReferences;
ResolveKeySource;
SetWin32ManifestProperties;
_GenerateCompileInputs;
BeforeCompile;
_TimeStampBeforeCompile;
CoreCompile;
_TimeStampAfterCompile;
AfterCompile;
;
_AfterCompileWinFXInternal
CompileLicxFilesDependsOn =
CompileRdlFilesDependsOn = PrepareRdlFiles;RunRdlCompiler
CompileTargetNameForTemporaryAssembly = CompileTemporaryAssembly
ComputeIntermediateSatelliteAssembliesDependsOn =
CreateManifestResourceNames
COMPUTERNAME = WIN-E9R8OHM2P1P
ComReferenceExecuteAsTool = false
ComReferenceNoClassMembers = false
ComSpec = C:\Windows\system32\cmd.exe
Configuration = Release
ConfigurationName = Release
ConsiderPlatformAsProcessorArchitecture = true
ContentFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths
ContinueOnError = false
CopyNuGetImplementations = true
CoreBuildDependsOn =
BuildOnlySettings;
PrepareForBuild;
PreBuildEvent;
ResolveReferences;
PrepareResources;
ResolveKeySource;
Compile;
ExportWindowsMDFile;
UnmanagedUnregistration;
GenerateSerializationAssemblies;
CreateSatelliteAssemblies;
GenerateManifests;
GetTargetPath;
PrepareForRun;
UnmanagedRegistration;
IncrementalClean;
PostBuildEvent
CoreCleanDependsOn =
CoreCompileDependsOn = _ComputeNonExistentFileProperty;ResolveCodeAnalysisRuleSet
CoreResGenDependsOn =
CppWindowsStoreUnitTestLibraryType = false
CreateCustomManifestResourceNamesDependsOn =
CreateHardLinksForCopyAdditionalFilesIfPossible = false
CreateManifestResourceNamesDependsOn =
CreateSatelliteAssembliesDependsOn =
_GenerateSatelliteAssemblyInputs;
ComputeIntermediateSatelliteAssemblies;
GenerateSatelliteAssemblies
CSharpCoreTargetsPath = Microsoft.CSharp.Core.targets
CSharpTargetsPath = C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.CSharp.CurrentVersion.targets
CustomAfterMicrosoftCommonProps = C:\Program Files (x86)\MSBuild\v14.0\Custom.After.Microsoft.Common.props
CustomAfterMicrosoftCommonTargets = C:\Program Files (x86)\MSBuild\v14.0\Custom.After.Microsoft.Common.targets
CustomAfterMicrosoftCSharpTargets = C:\Program Files (x86)\MSBuild\v14.0\Custom.After.Microsoft.CSharp.targets
CustomBeforeMicrosoftCommonProps = C:\Program Files (x86)\MSBuild\v14.0\Custom.Before.Microsoft.Common.props
CustomBeforeMicrosoftCommonTargets = C:\Program Files (x86)\MSBuild\v14.0\Custom.Before.Microsoft.Common.targets
CustomBeforeMicrosoftCSharpTargets = C:\Program Files (x86)\MSBuild\v14.0\Custom.Before.Microsoft.CSharp.targets
DebugSymbolsProjectOutputGroupDependsOn =
DebugType = pdbonly
DefaultLanguageSourceExtension = .cs
DeferredValidationErrorsFileName = obj\Release\\AC2C1ABA-CCF6-44D4-8127-588FD4D0A860-DeferredValidationErrors.xml
DefineCommonCapabilities = true
DefineCommonItemSchemas = true
DefineCommonReferenceSchemas = true
DefineConstants = TRACE
DelaySign =
DeploymentType = Installed
DesignTimeIntermediateOutputPath = obj\Release\InProcessTempFiles\
DesignTimeResolveAssemblyReferencesDependsOn =
GetFrameworkPaths;
GetReferenceAssemblyPaths;
ResolveReferences
DevEnvDir = *Undefined*
DocumentationProjectOutputGroupDependsOn =
DotNetTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Extensions.targets
EmbeddedWin32Manifest =
EntityDeployDependsOn =
EntityDeployIntermediateResourcePath = obj\Release\edmxResourcesToEmbed\
ErrorReport = prompt
ExpandSDKAllowedReferenceExtensions =
.winmd;
.dll
ExpandSDKReferencesDependsOn =
ResolveSDKReferences
FakesBinPath = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\Fakes
FakesCommandLineArguments = /msbuildpath:"C:\Program Files (x86)\MSBuild\14.0\bin\msbuild.exe"
FakesContinueOnError = false
FakesGenerateBeforeBuildDependsOn =
;
ResolveFakesReferences;
BuildFakesAssemblies;
FakesImported = true
FakesIntermediatePath = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\Fakes
FakesMSBuildPath = C:\Program Files (x86)\MSBuild\14.0\bin\msbuild.exe
FakesOutputPath = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\FakesAssemblies
FakesTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\Fakes\Microsoft.QualityTools.Testing.Fakes.targets
FakesTasks = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\Fakes\Microsoft.QualityTools.Testing.Fakes.Tasks.dll
FakesToolsPath = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\Fakes
FakesVerbosity = Critical
FileUpgradeFlags =
FindInvalidProjectReferencesDependsOn =
GetReferenceTargetPlatformMonikers
FP_NO_HOST_CHECK = NO
Framework20Dir = @(_TargetFramework20DirectoryItem)
Framework30Dir = @(_TargetFramework30DirectoryItem)
Framework35Dir = @(_TargetFramework35DirectoryItem)
Framework40Dir = @(_TargetFramework40DirectoryItem)
FrameworkDir = @(_TargetFramework40DirectoryItem)
FrameworkPathOverride = C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6
FrameworkRegistryBase = Software\Microsoft\.NETFramework
FrameworkSDKDir = @(_TargetFrameworkSDKDirectoryItem)
FrameworkSDKRoot = C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\
FullReferenceAssemblyNames = Full
GenerateBuildInfoConfigFile = false
GenerateCompiledExpressionsTempFilePathForEditing = obj\Release\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
GenerateCompiledExpressionsTempFilePathForTypeInfer = obj\Release\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
GenerateCompiledExpressionsTempFilePathForValidation = obj\Release\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
GeneratedFileExtension = .g.cs
GenerateManifestsDependsOn =
SetWin32ManifestProperties;
GenerateApplicationManifest;
GenerateDeploymentManifest
GenerateTargetFrameworkAttribute = true
GetCopyToOutputDirectoryItemsDependsOn =
AssignTargetPaths;
_SplitProjectReferencesByFileExistence
GetFrameworkPathsDependsOn =
GetReferenceAssemblyPathsDependsOn =
;
GetWinFXPath
GetTargetPathDependsOn =
GetTargetPathWithTargetPlatformMonikerDependsOn = ; GetTargetPath
HighEntropyVA = true
HOMEDRIVE = C:
HOMEPATH = \Users\Administrator
HostInBrowser = false
ImplicitlyExpandDesignTimeFacades = true
ImplicitlyExpandDesignTimeFacadesDependsOn =
;
GetReferenceAssemblyPaths
ImportByWildcardAfterMicrosoftCommonProps = true
ImportByWildcardAfterMicrosoftCommonTargets = true
ImportByWildcardAfterMicrosoftCSharpTargets = true
ImportByWildcardAfterMicrosoftNetFrameworkProps = true
ImportByWildcardAfterMicrosoftNetFrameworkTargets = true
ImportByWildcardBeforeMicrosoftCommonProps = true
ImportByWildcardBeforeMicrosoftCommonTargets = true
ImportByWildcardBeforeMicrosoftCSharpTargets = true
ImportByWildcardBeforeMicrosoftNetFrameworkProps = true
ImportByWildcardBeforeMicrosoftNetFrameworkTargets = true
ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true
ImportUserLocationsByWildcardAfterMicrosoftCommonTargets = true
ImportUserLocationsByWildcardAfterMicrosoftCSharpTargets = true
ImportUserLocationsByWildcardAfterMicrosoftNetFrameworkProps = true
ImportUserLocationsByWildcardAfterMicrosoftNetFrameworkTargets = true
ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true
ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets = true
ImportUserLocationsByWildcardBeforeMicrosoftCSharpTargets = true
ImportUserLocationsByWildcardBeforeMicrosoftNetFrameworkProps = true
ImportUserLocationsByWildcardBeforeMicrosoftNetFrameworkTargets = true
ImportXamlTargets = true
IncludeFrameworkReferencesFromNuGet = true
IncludeServerNameInBuildInfo = false
Install = true
InstallFrom = Disk
IntermediateOutputPath = obj\Release\
IsLibrary = true
IsWebBootstrapper = false
Language = C#
lib = C:\Program Files (x86)\SQLXML 4.0\bin\;C:\Program Files\SQLXML 4.0\bin\
LoadTimeSensitiveProperties =
;
LoadTimeSensitiveTargets =
;
XamlMarkupCompilePass1;
LOCALAPPDATA = C:\Users\Administrator\AppData\Local
LocalizationDirectivesToLocFile = None
LOGONSERVER = \\WIN-E9R8OHM2P1P
MapFileExtensions = true
MarkupCompilePass2ForMainAssemblyDependsOn =
GenerateTemporaryTargetAssembly;
MarkupCompilePass2;
AfterMarkupCompilePass2;
CleanupTemporaryTargetAssembly
MaxTargetPath = 100
MergedOutputCodeAnalysisFile = vc.nativecodeanalysis.all.xml
MicrosoftCommonPropsHasBeenImported = true
MsAppxPackageTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\AppxPackage\Microsoft.AppXPackage.Targets
MSBuildAllProjects = ;C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.CSharp.CurrentVersion.targets;C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.props;C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\TransMock.Wcf.Adapter.BTS2016.csproj;C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets;C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.targets;C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Xaml.targets
MSBuildAssemblyVersion = 14.0
MSBuildBinPath = C:\Program Files (x86)\MSBuild\14.0\bin
MSBuildExtensionsPath = C:\Program Files (x86)\MSBuild
MSBuildExtensionsPath32 = C:\Program Files (x86)\MSBuild
MSBuildExtensionsPath64 = C:\Program Files\MSBuild
MSBuildFrameworkToolsPath = C:\Windows\Microsoft.NET\Framework\v4.0.30319\
MSBuildFrameworkToolsPath32 = C:\Windows\Microsoft.NET\Framework\v4.0.30319\
MSBuildFrameworkToolsRoot = C:\Windows\Microsoft.NET\Framework\
MSBuildLoadMicrosoftTargetsReadOnly = true
MSBuildNodeCount = 1
MSBuildProgramFiles32 = C:\Program Files (x86)
MSBuildProjectDefaultTargets = Build
MSBuildProjectDirectory = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter
MSBuildProjectDirectoryNoRoot = Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter
MSBuildProjectExtension = .csproj
MSBuildProjectFile = TransMock.Wcf.Adapter.BTS2016.csproj
MSBuildProjectFullPath = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\TransMock.Wcf.Adapter.BTS2016.csproj
MSBuildProjectName = TransMock.Wcf.Adapter.BTS2016
MSBuildRuntimeVersion = 4.0.30319
MSBuildStartupDirectory = C:\Projects\TransMock.GH
MSBuildToolsPath = C:\Program Files (x86)\MSBuild\14.0\bin
MSBuildToolsPath32 = C:\Program Files (x86)\MSBuild\14.0\bin\
MSBuildToolsRoot = C:\Program Files (x86)\MSBuild\
MSBuildToolsVersion = 14.0
MSBuildUserExtensionsPath = C:\Users\Administrator\AppData\Local\Microsoft\MSBuild
MsTestToolsTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\TeamTest\Microsoft.TeamTest.targets
NetFrameworkPropsPath = C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.props
NetFrameworkTargetsPath = C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.targets
NoCompilerStandardLib = true
NuGetProps = C:\Program Files (x86)\MSBuild\Microsoft\NuGet\Microsoft.NuGet.props
NuGetRuntimeIdentifier = win
NuGetTargetFrameworkMonikerToInject = .NETCore,Version=v5.0
NuGetTargetMoniker = .NETFramework,Version=v4.6
NuGetTargetMonikerToInject = .NETCore,Version=v5.0
NuGetTargets = C:\Program Files (x86)\MSBuild\Microsoft\NuGet\Microsoft.NuGet.targets
NUMBER_OF_PROCESSORS = 4
OldToolsVersion = 2.0
Optimize = true
OS = Windows_NT
OSVersion = 5.1.2600.0
OutDir = bin\Release\net46\
OutputPath = bin\Release\net46\
OutputType = Library
OverwriteReadOnlyFiles = false
Path = C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power Tools\;C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power Tools\Best Practices Analyzer\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft BizTalk Server 2016\;C:\Program Files (x86)\Microsoft BizTalk Server 2016\Bins32;C:\Program Files (x86)\Microsoft BizTalk Server 2016\Bins64;C:\Program Files\dotnet\;C:\Program Files\nodejs\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files (x86)\Microsoft Emulator Manager\1.0\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\;C:\Users\Administrator\AppData\Roaming\npm
PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
Platform = AnyCPU
PlatformName = AnyCPU
PlatformTargetAsMSBuildArchitecture = CurrentArchitecture
PlatformTargetAsMSBuildArchitectureExplicitlySet = false
PostBuildEventDependsOn =
PreBuildEventDependsOn =
Prefer32Bit = false
PrepareForBuildDependsOn = GetFrameworkPaths;GetReferenceAssemblyPaths;AssignLinkMetadata
PrepareForRunDependsOn =
CopyFilesToOutputDirectory
;RunCodeAnalysis
PrepareResourceNamesDependsOn =
AssignWinFXEmbeddedResource;
AssignTargetPaths;
SplitResourcesByCulture;
CreateManifestResourceNames;
CreateCustomManifestResourceNames
PrepareResourcesDependsOn = ResolveNuGetPackageAssets;
ValidationExtension;
ExpressionBuildExtension;
XamlMarkupCompilePass1;
XamlMarkupCompilePass2;
MarkupCompilePass1;
AfterMarkupCompilePass1;
MarkupCompilePass2ForMainAssembly;
FileClassification;
MainResourcesGeneration;
PrepareResourceNames;
ResGen;
CompileLicxFiles
;CompileRdlFiles
PROCESSOR_ARCHITECTURE = x86
PROCESSOR_ARCHITEW6432 = AMD64
PROCESSOR_IDENTIFIER = Intel64 Family 6 Model 78 Stepping 3, GenuineIntel
PROCESSOR_LEVEL = 6
PROCESSOR_REVISION = 4e03
ProcessorArchitecture = msil
ProcessorArchitectureAsPlatform = AnyCPU
ProductVersion = 8.0.50727
ProgramData = C:\ProgramData
ProgramFiles = C:\Program Files (x86)
ProgramW6432 = C:\Program Files
ProjectDesignTimeAssemblyResolutionSearchPaths =
{CandidateAssemblyFiles};
;
{HintPathFromItem};
{TargetFrameworkDirectory};
{Registry:Software\Microsoft\.NETFramework,v4.6,AssemblyFoldersEx};
{RawFileName};
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\
ProjectDir = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\
ProjectExt = .csproj
ProjectFileName = TransMock.Wcf.Adapter.BTS2016.csproj
ProjectFlavor = Client
ProjectGuid = {1F8B806E-B479-4DB0-9896-1D29E288A2F2}
ProjectLockFile = project.lock.json
ProjectName = TransMock.Wcf.Adapter.BTS2016
ProjectPath = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\TransMock.Wcf.Adapter.BTS2016.csproj
PROMPT = $P$G
PSModulePath = C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\130\Tools\PowerShell\Modules\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\PowerShell\Modules\;C:\Program Files\WindowsPowerShell\Modules\;C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ResourceManager\AzureResourceManager\;C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement\;C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\Storage\
PUBLIC = C:\Users\Public
PublishableProject =
PublishBuildDependsOn =
BuildOnlySettings;
PrepareForBuild;
ResolveReferences;
PrepareResources;
ResolveKeySource;
PrepareResourcesForSatelliteAssemblies;
GenerateSerializationAssemblies;
CreateSatelliteAssemblies;
PublishDependsOn =
_DeploymentUnpublishable
PublishDir = bin\Release\net46\app.publish\
PublishOnlyDependsOn =
SetGenerateManifests;
PublishBuild;
BeforePublish;
GenerateManifests;
CopyFilesToOutputDirectory;
_CopyFilesToPublishFolder;
_DeploymentGenerateBootstrapper;
ResolveKeySource;
_DeploymentSignClickOnceDeployment;
AfterPublish
PublishPipelineCollectFilesCore =
;
CollectFilesFromBuildInfoConfigFile;
PublishUrl = publish\
RebuildDependsOn =
BeforeRebuild;
Clean;
Build;
AfterRebuild;
ReportingServicesTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\ReportingServices\Microsoft.ReportingServices.targets
ResGenDependsOn = ResolveAssemblyReferences;SplitResourcesByCulture;BeforeResGen;CoreResGen;AfterResGen
ResGenExecuteAsTool = false
ResolveAssemblyReferencesDependsOn =
GetFrameworkPaths;
GetReferenceAssemblyPaths;
PrepareForBuild;
ResolveSDKReferences;
ExpandSDKReferences;
;ResolveNuGetPackageAssets;
FakesGenerateBeforeBuild;
ResolveNuGetPackageAssetsDependsOn = ResolveProjectReferences
ResolveNuGetPackages = true
ResolveReferencesDependsOn =
BeforeResolveReferences;
AssignProjectConfiguration;
ResolveProjectReferences;
FindInvalidProjectReferences;
ResolveNativeReferences;
ResolveAssemblyReferences;
GenerateBindingRedirects;
ResolveComReferences;
AfterResolveReferences
;
ImplicitlyExpandDesignTimeFacades
;
ResolveTestReferences
ResolveSDKReferencesDependsOn =
GetInstalledSDKLocations
RootNamespace = TransMock.Wcf.Adapter
RunAfterInstall = true
RunCodeAnalysisDependsOn = ;Compile
RunCodeAnalysisInputs = bin\Release\net46\TransMock.Wcf.Adapter.dll
RunDependsOn =
RunNativeCodeAnalysisInputs =
SatelliteDllsProjectOutputGroupDependsOn = PrepareForBuild;PrepareResourceNames
SccAuxPath = SAK
SccLocalPath = SAK
SccProjectName = SAK
SccProvider = SAK
SchemaVersion = 2.0
SDK35ToolsPath = C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\
SDK40ToolsPath = C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools\
SDKRedistOutputGroupDependsOn = ResolveSDKReferences;ExpandSDKReferences
SDKReferenceDirectoryRoot = C:\Users\Administrator\AppData\Local\Microsoft SDKs;C:\Program Files (x86)\Microsoft SDKs
SDKReferenceRegistryRoot = Software\Microsoft\Microsoft SDKs
SESSIONNAME = 31C5CE94259D4006A9E4#0
SGenFilesOutputGroupDependsOn =
SGenShouldGenerateSerializer = true
SGenUseKeep = false
SGenUseProxyTypes = true
ShouldMarkCertainSDKReferencesAsRuntimeOnly = true
SignAssembly = true
SkipCopyUnchangedFiles = true
SolutionDir = *Undefined*
SolutionExt = *Undefined*
SolutionFileName = *Undefined*
SolutionName = *Undefined*
SolutionPath = *Undefined*
SourceFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths
SubsystemVersion = 6.00
SystemDrive = C:
SystemRoot = C:\Windows
TargetCulture = *
TargetDeployManifestFileName = TransMock.Wcf.Adapter.application
TargetDir = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\
TargetedFrameworkDir = @(_TargetedFrameworkDirectoryItem)
TargetedRuntimeVersion = v4.0.30319
TargetedSDKArchitecture = msil
TargetedSDKConfiguration = Retail
TargetExt = .dll
TargetFileName = TransMock.Wcf.Adapter.dll
TargetFrameworkAsMSBuildRuntime = CurrentRuntime
TargetFrameworkIdentifier = .NETFramework
TargetFrameworkMoniker = .NETFramework,Version=v4.6
TargetFrameworkMonikerAssemblyAttributesPath = C:\Users\Administrator\AppData\Local\Temp\2\.NETFramework,Version=v4.6.AssemblyAttributes.cs
TargetFrameworkProfile =
TargetFrameworkSDKToolsDirectory = C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools\
TargetFrameworkVersion = v4.6
TargetName = TransMock.Wcf.Adapter
TargetPath = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.dll
TargetPlatformDisplayName = Windows 7.0
TargetPlatformIdentifier = Windows
TargetPlatformMoniker = Windows,Version=7.0
TargetPlatformRegistryBase = Software\Microsoft\Microsoft SDKs\Windows
TargetPlatformSdkPath =
TargetPlatformVersion = 7.0
TargetRuntime = Managed
TaskKeyToken = 31bf3856ad364e35
TaskVersion = 4.0.0.0
TEMP = C:\Users\ADMINI~1\AppData\Local\Temp\2
TFSPowerToolDir = C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power Tools\
TMP = C:\Users\ADMINI~1\AppData\Local\Temp\2
UnitTestPlatformVersion = 14.0
UnmanagedRegistrationDependsOn =
UnmanagedUnregistrationDependsOn =
UpdateEnabled = false
UpdateInterval = 7
UpdateIntervalUnits = Days
UpdateMode = Foreground
UpdatePeriodically = false
UpdateRequired = false
UpgradeBackupLocation =
UpgradeSubsetToProfile = true
UseApplicationTrust = false
UseCommonOutputDirectory = false
UseHostCompilerIfAvailable = true
USERDOMAIN = WIN-E9R8OHM2P1P
USERDOMAIN_ROAMINGPROFILE = WIN-E9R8OHM2P1P
USERNAME = Administrator
USERPROFILE = C:\Users\Administrator
UseSourcePath = true
Utf8Output = true
VCTargetsPath = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\
VCTargetsPath10 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\
VCTargetsPath11 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\
VCTargetsPath12 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\
VCTargetsPath14 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\
Version = 1.0.0.0
VisualStudioVersion = 14.0
VS110COMNTOOLS = C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\
VS120COMNTOOLS = C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\
VS140COMNTOOLS = C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\
WarningLevel = 4
WebReference_EnableLegacyEventingModel = false
WebReference_EnableProperties = true
WebReference_EnableSQLTypes = true
windir = C:\Windows
WindowsSDK80Path = C:\Program Files (x86)\Windows Kits\8.1\
WIX = C:\Program Files (x86)\WiX Toolset v3.8\
WMSJSProject = WJProject
WMSJSProjectDirectory = JavaScript
WorkflowBuildExtensionAssemblyName = Microsoft.Activities.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
WorkflowBuildExtensionKeyToken = 31bf3856ad364e35
WorkflowBuildExtensionVersion = 4.0.0.0
XamlBuildTaskAssemblyName = XamlBuildTask, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
XamlBuildTaskLocation = C:\Windows\Microsoft.NET\Framework\v4.0.30319\
XamlBuildTaskPath = C:\Windows\Microsoft.NET\Framework\v4.0.30319\
XamlGenCodeFileNames = TransMock.Wcf.Adapter.BTS2016.csproj.XamlGeneratedCodeFileListAbsolute.txt
XamlGenMarkupFileNames = TransMock.Wcf.Adapter.BTS2016.csproj.XamlGeneratedXamlFileListAbsolute.txt
XamlPass2FlagFile = TransMock.Wcf.Adapter.BTS2016.csproj.XamlPass2Flag.txt
XamlRequiresCompilationPass2 = false
XamlTemporaryAssemblyName = TransMock.Wcf.Adapter
YieldDuringToolExecution = true
Initial Items:
_ApplicationManifestFinal
bin\Release\net46\Native.TransMock.Wcf.Adapter.manifest
TargetPath = Native.TransMock.Wcf.Adapter.manifest
_DebugSymbolsIntermediatePath
obj\Release\TransMock.Wcf.Adapter.pdb
_DebugSymbolsOutputPath
bin\Release\net46\TransMock.Wcf.Adapter.pdb
_DeploymentManifestEntryPoint
obj\Release\TransMock.Wcf.Adapter.dll
TargetPath = TransMock.Wcf.Adapter.dll
_ExplicitReference
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6\mscorlib.dll
_OutputPathItem
bin\Release\net46\
_ResolveComReferenceCache
obj\Release\TransMock.Wcf.Adapter.BTS2016.csproj.ResolveComReference.cache
_UnmanagedRegistrationCache
obj\TransMock.Wcf.Adapter.BTS2016.csproj.UnmanagedRegistration.cache
AppConfigFileDestination
bin\Release\net46\TransMock.Wcf.Adapter.dll.config
ApplicationManifest
obj\Release\Native.TransMock.Wcf.Adapter.manifest
TargetPath = Native.TransMock.Wcf.Adapter.manifest
AvailableItemName
AdditionalFiles
CodeAnalysisDictionary
EntityDeploy
Fakes
BootstrapperPackage
.NETFramework,Version=v4.0
Visible = False
ProductName = Microsoft .NET Framework 4 (x86 and x64)
Install = true
Microsoft.Net.Client.3.5
Visible = False
ProductName = .NET Framework 3.5 SP1 Client Profile
Install = false
Microsoft.Net.Framework.3.5.SP1
Visible = False
ProductName = .NET Framework 3.5 SP1
Install = false
Microsoft.Windows.Installer.3.1
Visible = False
ProductName = Windows Installer 3.1
Install = true
BuiltProjectOutputGroupKeyOutput
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.dll
IsKeyOutput = true
FinalOutputPath = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.dll
TargetPath = TransMock.Wcf.Adapter.dll
Clean
obj\Release\\TempCA\TransMock.Wcf.Adapter.dll
obj\Release\\TempCA\TransMock.Wcf.Adapter.pdb
Compile
..\VersionInfo.cs
Link = VersionInfo.cs
AdapterProperty.cs
AdapterPropertyParser.cs
AssemblyInfo.cs
MessageConnectionPair.cs
MockAdapter.cs
MockAdapterBinding.cs
MockAdapterBindingCollectionElement.cs
MockAdapterBindingElement.cs
MockAdapterBindingElementExtensionElement.cs
MockAdapterConnection.cs
MockAdapterConnectionFactory.cs
MockAdapterConnectionUri.cs
MockAdapterHandlerBase.cs
MockAdapterInboundHandler.cs
MockAdapterInboundReply.cs
MockAdapterOutboundHandler.cs
MockAdapterTrace.cs
TimeoutHelper.cs
DebugSymbolsProjectOutputGroupOutput
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.pdb
FinalOutputPath = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.pdb
TargetPath = TransMock.Wcf.Adapter.pdb
DeployManifest
obj\Release\TransMock.Wcf.Adapter.application
TargetPath = TransMock.Wcf.Adapter.application
IntermediateAssembly
obj\Release\TransMock.Wcf.Adapter.dll
None
..\..\Key\TransMock.snk
Link = TransMock.snk
Settings.StyleCop
NuGetPreprocessorValue
assemblyname
Value = TransMock.Wcf.Adapter
filename
Value = TransMock.Wcf.Adapter.BTS2016.csproj
fullpath
Value = C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter
outputfilename
Value = TransMock.Wcf.Adapter.dll
rootnamespace
Value = TransMock.Wcf.Adapter
ProjectCapability
AllTargetOutputGroups
AssemblyReferences
BuildWindowsDesktopTarget
COMReferences
CSharp
DeclaredSourceItems
LanguageService
Managed
OutputGroups
ProjectConfigurationsInferredFromUsage
ProjectReferences
ReferencesFolder
RelativePathDerivedDefaultNamespace
SharedProjectReferences
SingleFileGenerators
UserSourceItems
VisualStudioWellKnownOutputGroups
ProjectReference
..\..\Communication\TransMock.Communication.NamedPipe\TransMock.Communication.NamedPipes.BTS2016.csproj
Targets =
OutputItemType =
ReferenceSourceTarget = ProjectReference
Project = {6c9e0c6c-4e2b-40a1-8413-980538762dde}
Name = TransMock.Communication.NamedPipes.BTS2016
PropertyPageSchema
C:\Program Files (x86)\MSBuild\14.0\bin\\assemblyreference.xaml
Context = ;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\COMReference.xaml
Context = ;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\Content.xaml
Context = File;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\CSharp.BrowseObject.xaml
Context = BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\CSharp.ProjectItemsSchema.xaml
C:\Program Files (x86)\MSBuild\14.0\bin\\CSharp.xaml
Context = File
C:\Program Files (x86)\MSBuild\14.0\bin\\Debugger_General.xaml
Context = Project
C:\Program Files (x86)\MSBuild\14.0\bin\\EmbeddedResource.xaml
Context = File;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\Folder.xaml
Context = File;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\General.BrowseObject.xaml
Context = BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\General.xaml
Context = Project
C:\Program Files (x86)\MSBuild\14.0\bin\\General_File.xaml
Context = File
C:\Program Files (x86)\MSBuild\14.0\bin\\None.xaml
Context = File;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\ProjectItemsSchema.xaml
C:\Program Files (x86)\MSBuild\14.0\bin\\ProjectReference.xaml
Context = ;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\ResolvedAssemblyReference.xaml
Context = ProjectSubscriptionService;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\ResolvedCOMReference.xaml
Context = ProjectSubscriptionService;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\ResolvedProjectReference.xaml
Context = ProjectSubscriptionService;BrowseObject
C:\Program Files (x86)\MSBuild\14.0\bin\\SCC.xaml
Context = Invisible
C:\Program Files (x86)\MSBuild\14.0\bin\\SpecialFolder.xaml
Context = File;ProjectSubscriptionService
Reference
Microsoft.ServiceModel.Channels, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL
HintPath = ..\..\references\WCF LOB SDK\2016\Microsoft.ServiceModel.Channels.dll
System
System.Configuration
System.IdentityModel
System.IdentityModel.Selectors
System.Runtime.Serialization
System.ServiceModel
System.Xml
XamlBuildTaskTypeGenerationExtensionName
Microsoft.Activities.Build.BeforeInitializeComponentExtension
AssemblyName = Microsoft.Activities.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
Visible = false
Microsoft.Activities.Build.Debugger.DebugBuildExtension
AssemblyName = Microsoft.Activities.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
Visible = false
Building with tools version "14.0".
Project file contains ToolsVersion="12.0". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="14.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424.
Target "_CheckForInvalidConfigurationAndPlatform: (TargetId:2)" in file "C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\TransMock.Wcf.Adapter.BTS2016.csproj" (entry point):
Set Property: _InvalidConfigurationMessageText=The OutputPath property is not set for project 'TransMock.Wcf.Adapter.BTS2016.csproj'. Please check to make sure that you have specified a valid combination of Configuration and Platform for this project. Configuration='Release' Platform='AnyCPU'.
Set Property: _InvalidConfigurationMessageText=The OutputPath property is not set for project 'TransMock.Wcf.Adapter.BTS2016.csproj'. Please check to make sure that you have specified a valid combination of Configuration and Platform for this project. Configuration='Release' Platform='AnyCPU'. You may be seeing this message because you are trying to build a project without a solution file, and have specified a non-default Configuration or Platform that doesn't exist for this project.
Task "Error" skipped, due to false condition; ( '$(_InvalidConfigurationError)' == 'true' ) was evaluated as ( '' == 'true' ).
Task "Warning" skipped, due to false condition; ( '$(_InvalidConfigurationWarning)' == 'true' ) was evaluated as ( '' == 'true' ).
Using "Message" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
Task "Message" (TaskId:2)
Task Parameter:Text=Configuration=Release (TaskId:2)
Task Parameter:Importance=Low (TaskId:2)
Configuration=Release (TaskId:2)
Done executing task "Message". (TaskId:2)
Task "Message" (TaskId:3)
Task Parameter:Text=Platform=AnyCPU (TaskId:3)
Task Parameter:Importance=Low (TaskId:3)
Platform=AnyCPU (TaskId:3)
Done executing task "Message". (TaskId:3)
Task "Error" skipped, due to false condition; ('$(OutDir)' != '' and !HasTrailingSlash('$(OutDir)')) was evaluated as ('bin\Release\net46\' != '' and !HasTrailingSlash('bin\Release\net46\')).
Task "Error" skipped, due to false condition; ('$(BaseIntermediateOutputPath)' != '' and !HasTrailingSlash('$(BaseIntermediateOutputPath)')) was evaluated as ('obj\' != '' and !HasTrailingSlash('obj\')).
Task "Error" skipped, due to false condition; ('$(IntermediateOutputPath)' != '' and !HasTrailingSlash('$(IntermediateOutputPath)')) was evaluated as ('obj\Release\' != '' and !HasTrailingSlash('obj\Release\')).
Done building target "_CheckForInvalidConfigurationAndPlatform" in project "TransMock.Wcf.Adapter.BTS2016.csproj".: (TargetId:2)
Target "BeforeRebuild: (TargetId:3)" in file "C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\TransMock.Wcf.Adapter.BTS2016.csproj" (target "Rebuild" depends on it):
Done building target "BeforeRebuild" in project "TransMock.Wcf.Adapter.BTS2016.csproj".: (TargetId:3)
Target "BeforeClean: (TargetId:4)" in file "C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\TransMock.Wcf.Adapter.BTS2016.csproj" (target "Clean" depends on it):
Done building target "BeforeClean" in project "TransMock.Wcf.Adapter.BTS2016.csproj".: (TargetId:4)
Target "UnmanagedUnregistration" skipped, due to false condition; ((('$(_AssemblyTimestampBeforeCompile)' != '$(_AssemblyTimestampAfterCompile)' or '$(RegisterForComInterop)' != 'true' or '$(OutputType)' != 'library') or
('$(_AssemblyTimestampBeforeCompile)' == '')) and
Exists('@(_UnmanagedRegistrationCache)')) was evaluated as ((('' != '' or '' != 'true' or 'Library' != 'library') or
('' == '')) and
Exists('obj\TransMock.Wcf.Adapter.BTS2016.csproj.UnmanagedRegistration.cache')).
Target "CoreClean: (TargetId:5)" in file "C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\TransMock.Wcf.Adapter.BTS2016.csproj" (target "Clean" depends on it):
Using "Delete" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
Task "Delete" (TaskId:4)
Task Parameter:
Files=
obj\Release\\TempCA\TransMock.Wcf.Adapter.pdb
obj\Release\\TempCA\TransMock.Wcf.Adapter.dll (TaskId:4)
Task Parameter:TreatErrorsAsWarnings=True (TaskId:4)
File "obj\Release\\TempCA\TransMock.Wcf.Adapter.pdb" doesn't exist. Skipping. (TaskId:4)
File "obj\Release\\TempCA\TransMock.Wcf.Adapter.dll" doesn't exist. Skipping. (TaskId:4)
Done executing task "Delete". (TaskId:4)
Using "ReadLinesFromFile" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
Task "ReadLinesFromFile" (TaskId:5)
Task Parameter:File=obj\Release\TransMock.Wcf.Adapter.BTS2016.csproj.FileListAbsolute.txt (TaskId:5)
Output Item(s):
_CleanPriorFileWrites=
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.dll
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.pdb
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\Microsoft.ServiceModel.Channels.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.pdb
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.BTS2016.csprojResolveAssemblyReference.cache
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.pdb (TaskId:5)
Done executing task "ReadLinesFromFile". (TaskId:5)
Using "FindUnderPath" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
Task "FindUnderPath" (TaskId:6)
Task Parameter:Path=bin\Release\net46\ (TaskId:6)
Task Parameter:
Files=
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.dll
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.pdb
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\Microsoft.ServiceModel.Channels.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.pdb
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.BTS2016.csprojResolveAssemblyReference.cache
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.pdb (TaskId:6)
Comparison path is "bin\Release\net46\". (TaskId:6)
Output Item(s):
_CleanPriorFileWritesInOutput=
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.dll
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.pdb
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\Microsoft.ServiceModel.Channels.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.pdb (TaskId:6)
Done executing task "FindUnderPath". (TaskId:6)
Task "FindUnderPath" (TaskId:7)
Task Parameter:Path=obj\Release\ (TaskId:7)
Task Parameter:
Files=
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.dll
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.pdb
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\Microsoft.ServiceModel.Channels.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.pdb
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.BTS2016.csprojResolveAssemblyReference.cache
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.pdb (TaskId:7)
Comparison path is "obj\Release\". (TaskId:7)
Output Item(s):
_CleanPriorFileWritesInIntermediate=
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.BTS2016.csprojResolveAssemblyReference.cache
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.pdb (TaskId:7)
Done executing task "FindUnderPath". (TaskId:7)
Task "Delete" (TaskId:8)
Task Parameter:
Files=
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.dll
c:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Wcf.Adapter.pdb
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\Microsoft.ServiceModel.Channels.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\bin\Release\net46\TransMock.Communication.NamedPipes.pdb
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.BTS2016.csprojResolveAssemblyReference.cache
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.dll
C:\Projects\TransMock.GH\Adapter\TransMock.Wcf.Adapter\obj\Release\TransMock.Wcf.Adapter.pdb (TaskId:8)