Skip to content

Commit 30fcb7b

Browse files
committed
optimize Azure devops (move to folder .azure-piplines
+build configuration: AzureCI
1 parent fe64fde commit 30fcb7b

File tree

13 files changed

+361
-61
lines changed

13 files changed

+361
-61
lines changed
Lines changed: 63 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,63 @@
1-
# .NET Desktop
2-
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
3-
# Add steps that publish symbols, save build artifacts, and more:
4-
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
5-
6-
trigger:
7-
- main
8-
9-
pool:
10-
vmImage: 'windows-latest'
11-
12-
variables:
13-
solution: '**/*.sln'
14-
buildPlatform: 'Any CPU'
15-
buildConfiguration: 'Release'
16-
17-
steps:
18-
- task: NuGetToolInstaller@1
19-
20-
- task: NuGetCommand@2
21-
inputs:
22-
restoreSolution: '$(solution)'
23-
24-
- task: VSBuild@1
25-
inputs:
26-
solution: '$(solution)'
27-
platform: '$(buildPlatform)'
28-
configuration: '$(buildConfiguration)'
29-
30-
- task: VSTest@2
31-
inputs:
32-
platform: '$(buildPlatform)'
33-
configuration: '$(buildConfiguration)'
34-
testAssemblyVer2: |
35-
**\*test*.dll
36-
!**\*AccessTestClientTests.dll
37-
!**\*VBIDETools.Tests.dll
38-
!**\obj\**
39-
testFiltercriteria: "Category!=AccessClientTests"
40-
41-
- task: PowerShell@2
42-
inputs:
43-
targetType: 'inline'
44-
script: |
45-
$assemblyPath = "$(Build.SourcesDirectory)\source\AccUnit\bin\Release\AccUnit.dll"
46-
$versionInfo = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($assemblyPath)
47-
$version = $versionInfo.FileVersion
48-
$parts = $version.Split('.')
49-
$version = "$($parts[0]).$($parts[1]).$($parts[2])"
50-
Write-Host "Version: $version"
51-
$version | Out-File "$(Build.ArtifactStagingDirectory)\version.txt"
52-
Get-ChildItem -Path "$(Build.SourcesDirectory)\source\AccUnit\bin\Release"
53-
Compress-Archive -Path "$(Build.SourcesDirectory)\source\AccUnit\bin\Release\AccessCodeLib.*.dll" -DestinationPath "$(Build.ArtifactStagingDirectory)\AccUnit.$($version).bin.zip"
54-
Compress-Archive -Path "$(Build.SourcesDirectory)\source\AccUnit\bin\Release\AccessCodeLib.*.tlb" -DestinationPath "$(Build.ArtifactStagingDirectory)\AccUnit.$($version).bin.zip" -Update
55-
displayName: 'Read Version and create zip file'
56-
57-
- task: PublishBuildArtifacts@1
58-
inputs:
59-
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
60-
ArtifactName: 'drop'
61-
publishLocation: 'Container'
1+
# .NET Desktop
2+
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
3+
# Add steps that publish symbols, save build artifacts, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
5+
6+
trigger:
7+
- main
8+
9+
pr: none
10+
11+
pool:
12+
vmImage: 'windows-latest'
13+
14+
variables:
15+
solution: '**/*.sln'
16+
buildPlatform: 'Any CPU'
17+
buildConfiguration: 'AzureCI'
18+
19+
steps:
20+
- task: NuGetToolInstaller@1
21+
22+
- task: NuGetCommand@2
23+
inputs:
24+
restoreSolution: '$(solution)'
25+
26+
- task: VSBuild@1
27+
inputs:
28+
solution: '$(solution)'
29+
platform: '$(buildPlatform)'
30+
configuration: '$(buildConfiguration)'
31+
32+
- task: VSTest@2
33+
inputs:
34+
platform: '$(buildPlatform)'
35+
configuration: '$(buildConfiguration)'
36+
testAssemblyVer2: |
37+
**\*test*.dll
38+
!**\*AccessTestClientTests.dll
39+
!**\*VBIDETools.Tests.dll
40+
!**\obj\**
41+
testFiltercriteria: "Category!=AccessClientTests"
42+
43+
- task: PowerShell@2
44+
inputs:
45+
targetType: 'inline'
46+
script: |
47+
$assemblyPath = "$(Build.SourcesDirectory)\source\AccUnit\bin\Release\AccUnit.dll"
48+
$versionInfo = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($assemblyPath)
49+
$version = $versionInfo.FileVersion
50+
$parts = $version.Split('.')
51+
$version = "$($parts[0]).$($parts[1]).$($parts[2])"
52+
Write-Host "Version: $version"
53+
$version | Out-File "$(Build.ArtifactStagingDirectory)\version.txt"
54+
Get-ChildItem -Path "$(Build.SourcesDirectory)\source\AccUnit\bin\Release"
55+
Compress-Archive -Path "$(Build.SourcesDirectory)\source\AccUnit\bin\Release\AccessCodeLib.*.dll" -DestinationPath "$(Build.ArtifactStagingDirectory)\AccUnit.$($version).bin.zip"
56+
Compress-Archive -Path "$(Build.SourcesDirectory)\source\AccUnit\bin\Release\AccessCodeLib.*.tlb" -DestinationPath "$(Build.ArtifactStagingDirectory)\AccUnit.$($version).bin.zip" -Update
57+
displayName: 'Read Version and create zip file'
58+
59+
- task: PublishBuildArtifacts@1
60+
inputs:
61+
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
62+
ArtifactName: 'drop'
63+
publishLocation: 'Container'
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# .NET Desktop
2+
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
3+
# Add steps that publish symbols, save build artifacts, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
5+
6+
trigger:
7+
branches:
8+
exclude:
9+
- '*' # disable pushes
10+
11+
pr:
12+
branches:
13+
include:
14+
- main # aktive pull request to main only.
15+
16+
17+
pool:
18+
vmImage: 'windows-latest'
19+
20+
variables:
21+
solution: '**/*.sln'
22+
buildPlatform: 'Any CPU'
23+
buildConfiguration: 'AzureCI'
24+
25+
steps:
26+
- task: NuGetToolInstaller@1
27+
28+
- task: NuGetCommand@2
29+
inputs:
30+
restoreSolution: '$(solution)'
31+
32+
- task: VSBuild@1
33+
inputs:
34+
solution: '$(solution)'
35+
platform: '$(buildPlatform)'
36+
configuration: '$(buildConfiguration)'
37+
38+
- task: VSTest@2
39+
inputs:
40+
platform: '$(buildPlatform)'
41+
configuration: '$(buildConfiguration)'
42+
testAssemblyVer2: |
43+
**\*test*.dll
44+
!**\*AccessTestClientTests.dll
45+
!**\*VBIDETools.Tests.dll
46+
!**\obj\**

excel-add-in/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.xlsm
22
*.log
3+
*.zip

source/AccUnit/AccessCodeLib.AccUnit.csproj

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,33 @@
7373
<LangVersion>7.3</LangVersion>
7474
<ErrorReport>prompt</ErrorReport>
7575
</PropertyGroup>
76+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'AzureCI|AnyCPU'">
77+
<OutputPath>bin\AzureCI\</OutputPath>
78+
<DefineConstants>TRACE</DefineConstants>
79+
<Optimize>true</Optimize>
80+
<DebugType>pdbonly</DebugType>
81+
<PlatformTarget>AnyCPU</PlatformTarget>
82+
<LangVersion>7.3</LangVersion>
83+
<ErrorReport>prompt</ErrorReport>
84+
</PropertyGroup>
85+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'AzureCI|x86'">
86+
<OutputPath>bin\x86\AzureCI\</OutputPath>
87+
<DefineConstants>TRACE</DefineConstants>
88+
<Optimize>true</Optimize>
89+
<DebugType>pdbonly</DebugType>
90+
<PlatformTarget>x86</PlatformTarget>
91+
<LangVersion>7.3</LangVersion>
92+
<ErrorReport>prompt</ErrorReport>
93+
</PropertyGroup>
94+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'AzureCI|x64'">
95+
<OutputPath>bin\x64\AzureCI\</OutputPath>
96+
<DefineConstants>TRACE</DefineConstants>
97+
<Optimize>true</Optimize>
98+
<DebugType>pdbonly</DebugType>
99+
<PlatformTarget>x64</PlatformTarget>
100+
<LangVersion>7.3</LangVersion>
101+
<ErrorReport>prompt</ErrorReport>
102+
</PropertyGroup>
76103
<ItemGroup>
77104
<Reference Include="Interop.VBA">
78105
<HintPath>..\lib\VBA\Interop.VBA.dll</HintPath>

source/AccessCodeLib.AccUnit.sln

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AccessCodeLib.Common.VbaToo
2525
EndProject
2626
Global
2727
GlobalSection(SolutionConfigurationPlatforms) = preSolution
28+
AzureCI|Any CPU = AzureCI|Any CPU
29+
AzureCI|x64 = AzureCI|x64
30+
AzureCI|x86 = AzureCI|x86
2831
Debug|Any CPU = Debug|Any CPU
2932
Debug|x64 = Debug|x64
3033
Debug|x86 = Debug|x86
@@ -33,6 +36,12 @@ Global
3336
Release|x86 = Release|x86
3437
EndGlobalSection
3538
GlobalSection(ProjectConfigurationPlatforms) = postSolution
39+
{1575D69A-C503-4149-B3A9-2CE188B19C15}.AzureCI|Any CPU.ActiveCfg = AzureCI|Any CPU
40+
{1575D69A-C503-4149-B3A9-2CE188B19C15}.AzureCI|Any CPU.Build.0 = AzureCI|Any CPU
41+
{1575D69A-C503-4149-B3A9-2CE188B19C15}.AzureCI|x64.ActiveCfg = AzureCI|x64
42+
{1575D69A-C503-4149-B3A9-2CE188B19C15}.AzureCI|x64.Build.0 = AzureCI|x64
43+
{1575D69A-C503-4149-B3A9-2CE188B19C15}.AzureCI|x86.ActiveCfg = AzureCI|x86
44+
{1575D69A-C503-4149-B3A9-2CE188B19C15}.AzureCI|x86.Build.0 = AzureCI|x86
3645
{1575D69A-C503-4149-B3A9-2CE188B19C15}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3746
{1575D69A-C503-4149-B3A9-2CE188B19C15}.Debug|Any CPU.Build.0 = Debug|Any CPU
3847
{1575D69A-C503-4149-B3A9-2CE188B19C15}.Debug|x64.ActiveCfg = Debug|x64
@@ -45,6 +54,12 @@ Global
4554
{1575D69A-C503-4149-B3A9-2CE188B19C15}.Release|x64.Build.0 = Release|x64
4655
{1575D69A-C503-4149-B3A9-2CE188B19C15}.Release|x86.ActiveCfg = Release|x86
4756
{1575D69A-C503-4149-B3A9-2CE188B19C15}.Release|x86.Build.0 = Release|x86
57+
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.AzureCI|Any CPU.ActiveCfg = AzureCI|Any CPU
58+
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.AzureCI|Any CPU.Build.0 = AzureCI|Any CPU
59+
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.AzureCI|x64.ActiveCfg = AzureCI|x64
60+
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.AzureCI|x64.Build.0 = AzureCI|x64
61+
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.AzureCI|x86.ActiveCfg = AzureCI|x86
62+
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.AzureCI|x86.Build.0 = AzureCI|x86
4863
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4964
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.Debug|Any CPU.Build.0 = Debug|Any CPU
5065
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.Debug|x64.ActiveCfg = Debug|x64
@@ -57,6 +72,12 @@ Global
5772
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.Release|x64.Build.0 = Release|x64
5873
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.Release|x86.ActiveCfg = Release|x86
5974
{9774871B-E6C8-42ED-8DF4-32D93D59DD5A}.Release|x86.Build.0 = Release|x86
75+
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.AzureCI|Any CPU.ActiveCfg = AzureCI|Any CPU
76+
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.AzureCI|Any CPU.Build.0 = AzureCI|Any CPU
77+
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.AzureCI|x64.ActiveCfg = AzureCI|x64
78+
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.AzureCI|x64.Build.0 = AzureCI|x64
79+
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.AzureCI|x86.ActiveCfg = AzureCI|x86
80+
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.AzureCI|x86.Build.0 = AzureCI|x86
6081
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
6182
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
6283
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.Debug|x64.ActiveCfg = Debug|x64
@@ -69,6 +90,12 @@ Global
6990
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.Release|x64.Build.0 = Release|x64
7091
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.Release|x86.ActiveCfg = Release|x86
7192
{9FA679C2-82C0-42DC-A34F-F78A9012EEEB}.Release|x86.Build.0 = Release|x86
93+
{7AF24615-91B3-4775-BC6E-C8986F980B57}.AzureCI|Any CPU.ActiveCfg = AzureCI|Any CPU
94+
{7AF24615-91B3-4775-BC6E-C8986F980B57}.AzureCI|Any CPU.Build.0 = AzureCI|Any CPU
95+
{7AF24615-91B3-4775-BC6E-C8986F980B57}.AzureCI|x64.ActiveCfg = AzureCI|x64
96+
{7AF24615-91B3-4775-BC6E-C8986F980B57}.AzureCI|x64.Build.0 = AzureCI|x64
97+
{7AF24615-91B3-4775-BC6E-C8986F980B57}.AzureCI|x86.ActiveCfg = AzureCI|x86
98+
{7AF24615-91B3-4775-BC6E-C8986F980B57}.AzureCI|x86.Build.0 = AzureCI|x86
7299
{7AF24615-91B3-4775-BC6E-C8986F980B57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
73100
{7AF24615-91B3-4775-BC6E-C8986F980B57}.Debug|Any CPU.Build.0 = Debug|Any CPU
74101
{7AF24615-91B3-4775-BC6E-C8986F980B57}.Debug|x64.ActiveCfg = Debug|x64
@@ -81,6 +108,11 @@ Global
81108
{7AF24615-91B3-4775-BC6E-C8986F980B57}.Release|x64.Build.0 = Release|x64
82109
{7AF24615-91B3-4775-BC6E-C8986F980B57}.Release|x86.ActiveCfg = Release|x86
83110
{7AF24615-91B3-4775-BC6E-C8986F980B57}.Release|x86.Build.0 = Release|x86
111+
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.AzureCI|Any CPU.ActiveCfg = AzureCI|Any CPU
112+
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.AzureCI|x64.ActiveCfg = AzureCI|x64
113+
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.AzureCI|x64.Build.0 = AzureCI|x64
114+
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.AzureCI|x86.ActiveCfg = AzureCI|x86
115+
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.AzureCI|x86.Build.0 = AzureCI|x86
84116
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
85117
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.Debug|Any CPU.Build.0 = Debug|Any CPU
86118
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.Debug|x64.ActiveCfg = Debug|x64
@@ -93,6 +125,12 @@ Global
93125
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.Release|x64.Build.0 = Release|x64
94126
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.Release|x86.ActiveCfg = Release|x86
95127
{26A856D0-20FC-47A3-A4E6-B9745A5ADB39}.Release|x86.Build.0 = Release|x86
128+
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.AzureCI|Any CPU.ActiveCfg = AzureCI|Any CPU
129+
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.AzureCI|Any CPU.Build.0 = AzureCI|Any CPU
130+
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.AzureCI|x64.ActiveCfg = AzureCI|x64
131+
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.AzureCI|x64.Build.0 = AzureCI|x64
132+
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.AzureCI|x86.ActiveCfg = AzureCI|x86
133+
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.AzureCI|x86.Build.0 = AzureCI|x86
96134
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
97135
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.Debug|Any CPU.Build.0 = Debug|Any CPU
98136
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.Debug|x64.ActiveCfg = Debug|x64
@@ -105,6 +143,11 @@ Global
105143
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.Release|x64.Build.0 = Release|x64
106144
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.Release|x86.ActiveCfg = Release|x86
107145
{38DDC4CD-C9E5-473F-B2DD-984AF38FCCB6}.Release|x86.Build.0 = Release|x86
146+
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.AzureCI|Any CPU.ActiveCfg = AzureCI|Any CPU
147+
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.AzureCI|x64.ActiveCfg = AzureCI|x64
148+
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.AzureCI|x64.Build.0 = AzureCI|x64
149+
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.AzureCI|x86.ActiveCfg = AzureCI|x86
150+
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.AzureCI|x86.Build.0 = AzureCI|x86
108151
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
109152
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.Debug|Any CPU.Build.0 = Debug|Any CPU
110153
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.Debug|x64.ActiveCfg = Debug|x64
@@ -117,6 +160,12 @@ Global
117160
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.Release|x64.Build.0 = Release|x64
118161
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.Release|x86.ActiveCfg = Release|x86
119162
{CCA7B1D6-C871-4F1B-901B-2F00278BF7E9}.Release|x86.Build.0 = Release|x86
163+
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.AzureCI|Any CPU.ActiveCfg = AzureCI|Any CPU
164+
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.AzureCI|Any CPU.Build.0 = AzureCI|Any CPU
165+
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.AzureCI|x64.ActiveCfg = AzureCI|x64
166+
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.AzureCI|x64.Build.0 = AzureCI|x64
167+
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.AzureCI|x86.ActiveCfg = AzureCI|x86
168+
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.AzureCI|x86.Build.0 = AzureCI|x86
120169
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
121170
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.Debug|Any CPU.Build.0 = Debug|Any CPU
122171
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.Debug|x64.ActiveCfg = Debug|x64
@@ -129,6 +178,12 @@ Global
129178
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.Release|x64.Build.0 = Release|Any CPU
130179
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.Release|x86.ActiveCfg = Release|x86
131180
{CF0B66F5-C8C0-4C13-9B3B-B8AF272C744E}.Release|x86.Build.0 = Release|x86
181+
{551658A9-8C19-4EE4-896B-F815CC09BFEF}.AzureCI|Any CPU.ActiveCfg = AzureCI|Any CPU
182+
{551658A9-8C19-4EE4-896B-F815CC09BFEF}.AzureCI|Any CPU.Build.0 = AzureCI|Any CPU
183+
{551658A9-8C19-4EE4-896B-F815CC09BFEF}.AzureCI|x64.ActiveCfg = AzureCI|x64
184+
{551658A9-8C19-4EE4-896B-F815CC09BFEF}.AzureCI|x64.Build.0 = AzureCI|x64
185+
{551658A9-8C19-4EE4-896B-F815CC09BFEF}.AzureCI|x86.ActiveCfg = AzureCI|x86
186+
{551658A9-8C19-4EE4-896B-F815CC09BFEF}.AzureCI|x86.Build.0 = AzureCI|x86
132187
{551658A9-8C19-4EE4-896B-F815CC09BFEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
133188
{551658A9-8C19-4EE4-896B-F815CC09BFEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
134189
{551658A9-8C19-4EE4-896B-F815CC09BFEF}.Debug|x64.ActiveCfg = Debug|x64

source/Common/Common.Tools/AccessCodeLib.Common.Tools.csproj

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,33 @@
7171
<LangVersion>7.3</LangVersion>
7272
<ErrorReport>prompt</ErrorReport>
7373
</PropertyGroup>
74+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'AzureCI|AnyCPU'">
75+
<OutputPath>bin\AzureCI\</OutputPath>
76+
<DefineConstants>TRACE</DefineConstants>
77+
<Optimize>true</Optimize>
78+
<DebugType>pdbonly</DebugType>
79+
<PlatformTarget>AnyCPU</PlatformTarget>
80+
<LangVersion>7.3</LangVersion>
81+
<ErrorReport>prompt</ErrorReport>
82+
</PropertyGroup>
83+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'AzureCI|x86'">
84+
<OutputPath>bin\x86\AzureCI\</OutputPath>
85+
<DefineConstants>TRACE</DefineConstants>
86+
<Optimize>true</Optimize>
87+
<DebugType>pdbonly</DebugType>
88+
<PlatformTarget>x86</PlatformTarget>
89+
<LangVersion>7.3</LangVersion>
90+
<ErrorReport>prompt</ErrorReport>
91+
</PropertyGroup>
92+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'AzureCI|x64'">
93+
<OutputPath>bin\x64\AzureCI\</OutputPath>
94+
<DefineConstants>TRACE</DefineConstants>
95+
<Optimize>true</Optimize>
96+
<DebugType>pdbonly</DebugType>
97+
<PlatformTarget>x64</PlatformTarget>
98+
<LangVersion>7.3</LangVersion>
99+
<ErrorReport>prompt</ErrorReport>
100+
</PropertyGroup>
74101
<ItemGroup>
75102
<Reference Include="System" />
76103
<Reference Include="System.Core" />

0 commit comments

Comments
 (0)