Skip to content

Commit 7ca19be

Browse files
committed
Added release configuration for x86 and x64
1 parent 2802250 commit 7ca19be

File tree

3 files changed

+104
-52
lines changed

3 files changed

+104
-52
lines changed

JSonToCSV.sln

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,35 @@ EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1212
Debug|Any CPU = Debug|Any CPU
13+
Debug|x64 = Debug|x64
14+
Debug|x86 = Debug|x86
1315
Release|Any CPU = Release|Any CPU
16+
Release|x64 = Release|x64
17+
Release|x86 = Release|x86
1418
EndGlobalSection
1519
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1620
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1721
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Debug|x64.ActiveCfg = Debug|x64
23+
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Debug|x64.Build.0 = Debug|x64
24+
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Debug|x86.ActiveCfg = Debug|x86
25+
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Debug|x86.Build.0 = Debug|x86
1826
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Release|Any CPU.ActiveCfg = Release|Any CPU
1927
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Release|Any CPU.Build.0 = Release|Any CPU
28+
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Release|x64.ActiveCfg = Release|x64
29+
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Release|x64.Build.0 = Release|x64
30+
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Release|x86.ActiveCfg = Release|x86
31+
{31E3455B-012B-46E5-A3D5-4C2679C761D4}.Release|x86.Build.0 = Release|x86
2032
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Debug|Any CPU.ActiveCfg = Debug
33+
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Debug|x64.ActiveCfg = Debug
34+
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Debug|x64.Build.0 = Debug
35+
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Debug|x86.ActiveCfg = Debug
36+
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Debug|x86.Build.0 = Debug
2137
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Release|Any CPU.ActiveCfg = Release
38+
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Release|x64.ActiveCfg = Release
39+
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Release|x64.Build.0 = Release
40+
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Release|x86.ActiveCfg = Release
41+
{CC567A01-C999-4F17-92DD-FF99C1EE9244}.Release|x86.Build.0 = Release
2242
EndGlobalSection
2343
GlobalSection(SolutionProperties) = preSolution
2444
HideSolutionNode = FALSE

JSonToCSV/JSonToCSV.csproj

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,42 @@
4040
<PropertyGroup>
4141
<ApplicationIcon>App-json.ico</ApplicationIcon>
4242
</PropertyGroup>
43+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
44+
<DebugSymbols>true</DebugSymbols>
45+
<OutputPath>bin\x64\Debug\</OutputPath>
46+
<DefineConstants>DEBUG;TRACE</DefineConstants>
47+
<DebugType>full</DebugType>
48+
<PlatformTarget>x64</PlatformTarget>
49+
<ErrorReport>prompt</ErrorReport>
50+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
51+
</PropertyGroup>
52+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
53+
<OutputPath>bin\x64\Release\</OutputPath>
54+
<DefineConstants>TRACE</DefineConstants>
55+
<Optimize>true</Optimize>
56+
<DebugType>pdbonly</DebugType>
57+
<PlatformTarget>x64</PlatformTarget>
58+
<ErrorReport>prompt</ErrorReport>
59+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
60+
</PropertyGroup>
61+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
62+
<DebugSymbols>true</DebugSymbols>
63+
<OutputPath>bin\x86\Debug\</OutputPath>
64+
<DefineConstants>DEBUG;TRACE</DefineConstants>
65+
<DebugType>full</DebugType>
66+
<PlatformTarget>x86</PlatformTarget>
67+
<ErrorReport>prompt</ErrorReport>
68+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
69+
</PropertyGroup>
70+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
71+
<OutputPath>bin\x86\Release\</OutputPath>
72+
<DefineConstants>TRACE</DefineConstants>
73+
<Optimize>true</Optimize>
74+
<DebugType>pdbonly</DebugType>
75+
<PlatformTarget>x86</PlatformTarget>
76+
<ErrorReport>prompt</ErrorReport>
77+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
78+
</PropertyGroup>
4379
<ItemGroup>
4480
<Reference Include="ChoETL, Version=1.1.0.4, Culture=neutral, processorArchitecture=MSIL">
4581
<HintPath>..\packages\ChoETL.1.1.0.4\lib\net45\ChoETL.dll</HintPath>

JSonToCSVSetup/JSonToCSVSetup.vdproj

Lines changed: 48 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"Entry"
1717
{
1818
"MsmKey" = "8:_17764B222814B1DF2CED74CCC966D46B"
19-
"OwnerKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
19+
"OwnerKey" = "8:_9A36A5525A584FD8B1850628817A8295"
2020
"MsmSig" = "8:_UNDEFINED"
2121
}
2222
"Entry"
@@ -28,7 +28,13 @@
2828
"Entry"
2929
{
3030
"MsmKey" = "8:_52283E21FC6119C36A5B38753D1DB945"
31-
"OwnerKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
31+
"OwnerKey" = "8:_9A36A5525A584FD8B1850628817A8295"
32+
"MsmSig" = "8:_UNDEFINED"
33+
}
34+
"Entry"
35+
{
36+
"MsmKey" = "8:_9A36A5525A584FD8B1850628817A8295"
37+
"OwnerKey" = "8:_UNDEFINED"
3238
"MsmSig" = "8:_UNDEFINED"
3339
}
3440
"Entry"
@@ -40,13 +46,13 @@
4046
"Entry"
4147
{
4248
"MsmKey" = "8:_9F4B6B45A6734BEEFE23A0CFA8774BE4"
43-
"OwnerKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
49+
"OwnerKey" = "8:_9A36A5525A584FD8B1850628817A8295"
4450
"MsmSig" = "8:_UNDEFINED"
4551
}
4652
"Entry"
4753
{
4854
"MsmKey" = "8:_B1917AEA3799284382D7C8BE121B8013"
49-
"OwnerKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
55+
"OwnerKey" = "8:_9A36A5525A584FD8B1850628817A8295"
5056
"MsmSig" = "8:_UNDEFINED"
5157
}
5258
"Entry"
@@ -58,7 +64,7 @@
5864
"Entry"
5965
{
6066
"MsmKey" = "8:_B5966E8F7B9AB4772453F207525951B3"
61-
"OwnerKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
67+
"OwnerKey" = "8:_9A36A5525A584FD8B1850628817A8295"
6268
"MsmSig" = "8:_UNDEFINED"
6369
}
6470
"Entry"
@@ -69,32 +75,26 @@
6975
}
7076
"Entry"
7177
{
72-
"MsmKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
73-
"OwnerKey" = "8:_UNDEFINED"
74-
"MsmSig" = "8:_UNDEFINED"
75-
}
76-
"Entry"
77-
{
7878
"MsmKey" = "8:_F8622AA8E3B5F0C2462AD8BCEFA8C5AF"
7979
"OwnerKey" = "8:_B1917AEA3799284382D7C8BE121B8013"
8080
"MsmSig" = "8:_UNDEFINED"
8181
}
8282
"Entry"
8383
{
8484
"MsmKey" = "8:_F8622AA8E3B5F0C2462AD8BCEFA8C5AF"
85-
"OwnerKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
85+
"OwnerKey" = "8:_9A36A5525A584FD8B1850628817A8295"
8686
"MsmSig" = "8:_UNDEFINED"
8787
}
8888
"Entry"
8989
{
9090
"MsmKey" = "8:_FAF893F425ED585645CA4AFE6D37076C"
91-
"OwnerKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
91+
"OwnerKey" = "8:_9A36A5525A584FD8B1850628817A8295"
9292
"MsmSig" = "8:_UNDEFINED"
9393
}
9494
"Entry"
9595
{
9696
"MsmKey" = "8:_FC43F116A9D9A2EF96A000FED0E43FF2"
97-
"OwnerKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
97+
"OwnerKey" = "8:_9A36A5525A584FD8B1850628817A8295"
9898
"MsmSig" = "8:_UNDEFINED"
9999
}
100100
"Entry"
@@ -112,7 +112,7 @@
112112
"Entry"
113113
{
114114
"MsmKey" = "8:_UNDEFINED"
115-
"OwnerKey" = "8:_EADC72F1DF3946D0863BD39401794C12"
115+
"OwnerKey" = "8:_9A36A5525A584FD8B1850628817A8295"
116116
"MsmSig" = "8:_UNDEFINED"
117117
}
118118
"Entry"
@@ -175,6 +175,14 @@
175175
"PrivateKeyFile" = "8:"
176176
"TimeStampServer" = "8:"
177177
"InstallerBootstrapper" = "3:2"
178+
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
179+
{
180+
"Enabled" = "11:TRUE"
181+
"PromptEnabled" = "11:TRUE"
182+
"PrerequisitesLocation" = "2:1"
183+
"Url" = "8:"
184+
"ComponentsUrl" = "8:"
185+
}
178186
}
179187
"Release"
180188
{
@@ -191,6 +199,22 @@
191199
"PrivateKeyFile" = "8:"
192200
"TimeStampServer" = "8:"
193201
"InstallerBootstrapper" = "3:2"
202+
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
203+
{
204+
"Enabled" = "11:TRUE"
205+
"PromptEnabled" = "11:TRUE"
206+
"PrerequisitesLocation" = "2:1"
207+
"Url" = "8:"
208+
"ComponentsUrl" = "8:"
209+
"Items"
210+
{
211+
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.5"
212+
{
213+
"Name" = "8:Microsoft .NET Framework 4.5 (x86 and x64)"
214+
"ProductCode" = "8:.NETFramework,Version=v4.5"
215+
}
216+
}
217+
}
194218
}
195219
}
196220
"Deployable"
@@ -507,7 +531,7 @@
507531
}
508532
"{3C67513D-01DD-4637-8A68-80971EB9504F}:_9A94275787134BCDA98CA2A8DBE903EF"
509533
{
510-
"DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]"
534+
"DefaultLocation" = "8:[ProgramFiles64Folder][Manufacturer]\\[ProductName]"
511535
"Name" = "8:#1925"
512536
"AlwaysCreate" = "11:FALSE"
513537
"Condition" = "8:"
@@ -556,13 +580,13 @@
556580
"Name" = "8:Microsoft Visual Studio"
557581
"ProductName" = "8:JSonToCSV"
558582
"ProductCode" = "8:{3686748F-F569-4657-85F5-237792BA6ED1}"
559-
"PackageCode" = "8:{03B468D4-77A0-4BD8-A8A7-9514584F93E2}"
583+
"PackageCode" = "8:{C28D4946-C4AE-4E7B-806F-D4844E568B65}"
560584
"UpgradeCode" = "8:{F46517C7-96B5-4C39-92AB-EF6960A9292B}"
561585
"AspNetVersion" = "8:4.0.30319.0"
562586
"RestartWWWService" = "11:FALSE"
563587
"RemovePreviousVersions" = "11:FALSE"
564588
"DetectNewerInstalledVersion" = "11:TRUE"
565-
"InstallAllUsers" = "11:FALSE"
589+
"InstallAllUsers" = "11:TRUE"
566590
"ProductVersion" = "8:1.0.0"
567591
"Manufacturer" = "8:PiweeSoft"
568592
"ARPHELPTELEPHONE" = "8:"
@@ -573,11 +597,11 @@
573597
"Keywords" = "8:"
574598
"ARPCOMMENTS" = "8:"
575599
"ARPURLINFOABOUT" = "8:"
576-
"ARPPRODUCTICON" = "8:"
600+
"ARPPRODUCTICON" = "8:_E4B114EE48B1414797D9C49752021665"
577601
"ARPIconIndex" = "3:0"
578602
"SearchPath" = "8:"
579603
"UseSystemSearchPath" = "11:TRUE"
580-
"TargetPlatform" = "3:0"
604+
"TargetPlatform" = "3:1"
581605
"PreBuildEvent" = "8:"
582606
"PostBuildEvent" = "8:"
583607
"RunPostBuildEvent" = "3:0"
@@ -676,15 +700,15 @@
676700
}
677701
"Shortcut"
678702
{
679-
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_1A43DEACE6FC4A5C8A55991D58436476"
703+
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_DC2110B92A0045C5A7BE2081CFD13547"
680704
{
681705
"Name" = "8:JSonToCSV"
682706
"Arguments" = "8:"
683707
"Description" = "8:"
684708
"ShowCmd" = "3:1"
685709
"IconIndex" = "3:0"
686710
"Transitive" = "11:FALSE"
687-
"Target" = "8:_EADC72F1DF3946D0863BD39401794C12"
711+
"Target" = "8:_9A36A5525A584FD8B1850628817A8295"
688712
"Folder" = "8:_C475A5ADFF6A4750A662D7FFED57C4F8"
689713
"WorkingFolder" = "8:_9A94275787134BCDA98CA2A8DBE903EF"
690714
"Icon" = "8:_E4B114EE48B1414797D9C49752021665"
@@ -1089,37 +1113,9 @@
10891113
}
10901114
"ProjectOutput"
10911115
{
1092-
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5BBDBFDADBF84F698620F93FCD8981F9"
1093-
{
1094-
"SourcePath" = "8:"
1095-
"TargetName" = "8:"
1096-
"Tag" = "8:"
1097-
"Folder" = "8:_9A94275787134BCDA98CA2A8DBE903EF"
1098-
"Condition" = "8:"
1099-
"Transitive" = "11:FALSE"
1100-
"Vital" = "11:TRUE"
1101-
"ReadOnly" = "11:FALSE"
1102-
"Hidden" = "11:FALSE"
1103-
"System" = "11:FALSE"
1104-
"Permanent" = "11:FALSE"
1105-
"SharedLegacy" = "11:FALSE"
1106-
"PackageAs" = "3:1"
1107-
"Register" = "3:1"
1108-
"Exclude" = "11:FALSE"
1109-
"IsDependency" = "11:FALSE"
1110-
"IsolateTo" = "8:"
1111-
"ProjectOutputGroupRegister" = "3:1"
1112-
"OutputConfiguration" = "8:"
1113-
"OutputGroupCanonicalName" = "8:RuntimeImplementation"
1114-
"OutputProjectGuid" = "8:{31E3455B-012B-46E5-A3D5-4C2679C761D4}"
1115-
"ShowKeyOutput" = "11:TRUE"
1116-
"ExcludeFilters"
1117-
{
1118-
}
1119-
}
1120-
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_EADC72F1DF3946D0863BD39401794C12"
1116+
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9A36A5525A584FD8B1850628817A8295"
11211117
{
1122-
"SourcePath" = "8:..\\JSonToCSV\\obj\\Debug\\JSonToCSV.exe"
1118+
"SourcePath" = "8:..\\JSonToCSV\\obj\\x64\\Release\\JSonToCSV.exe"
11231119
"TargetName" = "8:"
11241120
"Tag" = "8:"
11251121
"Folder" = "8:_9A94275787134BCDA98CA2A8DBE903EF"

0 commit comments

Comments
 (0)