Skip to content

Commit c257ae4

Browse files
committed
Merge branch 'release/0.0.2'
2 parents 908ac47 + 5437345 commit c257ae4

File tree

5 files changed

+57
-6
lines changed

5 files changed

+57
-6
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ steps:
6060
command: 'publish'
6161
publishWebProjects: false
6262
projects: 'src/SqlDocs.App.csproj'
63-
arguments: '-c $(BuildConfiguration) -a x64 -o src/bin/Publish/win-x64 /p:Version=$(SemVersion)'
63+
arguments: '/p:PublishProfile=x64 /p:Version=$(SemVersion)'
6464
zipAfterPublish: false
6565
modifyOutputPath: false
6666
- task: DotNetCoreCLI@2
@@ -69,7 +69,7 @@ steps:
6969
command: 'publish'
7070
publishWebProjects: false
7171
projects: 'src/SqlDocs.App.csproj'
72-
arguments: '-c $(BuildConfiguration) -a x86 -o src/bin/Publish/win-x86 /p:Version=$(SemVersion)'
72+
arguments: '/p:PublishProfile=x86 /p:Version=$(SemVersion)'
7373
zipAfterPublish: false
7474
modifyOutputPath: false
7575
- task: DotNetCoreCLI@2
@@ -78,7 +78,7 @@ steps:
7878
command: 'publish'
7979
publishWebProjects: false
8080
projects: 'src/SqlDocs.App.csproj'
81-
arguments: '-c $(BuildConfiguration) -a x86 -o src/bin/Publish/portable /p:Version=$(SemVersion)'
81+
arguments: '/p:PublishProfile=Portable /p:Version=$(SemVersion)'
8282
zipAfterPublish: false
8383
modifyOutputPath: false
8484
- task: PowerShell@2
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project>
6+
<PropertyGroup>
7+
<Configuration>Release</Configuration>
8+
<Platform>Any CPU</Platform>
9+
<PublishDir>bin\Publish\portable</PublishDir>
10+
<PublishProtocol>FileSystem</PublishProtocol>
11+
<_TargetId>Folder</_TargetId>
12+
<TargetFramework>net7.0</TargetFramework>
13+
<SelfContained>false</SelfContained>
14+
</PropertyGroup>
15+
</Project>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project>
6+
<PropertyGroup>
7+
<Configuration>Release</Configuration>
8+
<Platform>x64</Platform>
9+
<PublishDir>bin\Publish\win-x64</PublishDir>
10+
<PublishProtocol>FileSystem</PublishProtocol>
11+
<_TargetId>Folder</_TargetId>
12+
<TargetFramework>net7.0</TargetFramework>
13+
<SelfContained>false</SelfContained>
14+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
15+
<PublishSingleFile>true</PublishSingleFile>
16+
<PublishReadyToRun>false</PublishReadyToRun>
17+
</PropertyGroup>
18+
</Project>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project>
6+
<PropertyGroup>
7+
<Configuration>Release</Configuration>
8+
<Platform>x86</Platform>
9+
<PublishDir>bin\Publish\win-x86</PublishDir>
10+
<PublishProtocol>FileSystem</PublishProtocol>
11+
<_TargetId>Folder</_TargetId>
12+
<TargetFramework>net7.0</TargetFramework>
13+
<SelfContained>false</SelfContained>
14+
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
15+
<PublishSingleFile>true</PublishSingleFile>
16+
<PublishReadyToRun>false</PublishReadyToRun>
17+
</PropertyGroup>
18+
</Project>

src/SqlDocs.App.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
<Description>Building nice looking documention of relational database schemata</Description>
1414
</PropertyGroup>
1515

16-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
16+
<PropertyGroup Condition="'$(Configuration)|$(RuntimeIdentifier)'=='Release|win-x86'">
1717
<PublishSingleFile>true</PublishSingleFile>
1818
</PropertyGroup>
19-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
19+
<PropertyGroup Condition="'$(Configuration)|$(RuntimeIdentifier)'=='Release|win-x64'">
2020
<PublishSingleFile>true</PublishSingleFile>
2121
</PropertyGroup>
22-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
22+
<PropertyGroup Condition="'$(Configuration)|$(RuntimeIdentifier)'=='Release|win-arm64'">
2323
<PublishSingleFile>true</PublishSingleFile>
2424
</PropertyGroup>
2525

0 commit comments

Comments
 (0)