File tree Expand file tree Collapse file tree 5 files changed +57
-6
lines changed
Properties/PublishProfiles Expand file tree Collapse file tree 5 files changed +57
-6
lines changed Original file line number Diff line number Diff line change 60
60
command : ' publish'
61
61
publishWebProjects : false
62
62
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)'
64
64
zipAfterPublish : false
65
65
modifyOutputPath : false
66
66
- task : DotNetCoreCLI@2
69
69
command : ' publish'
70
70
publishWebProjects : false
71
71
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)'
73
73
zipAfterPublish : false
74
74
modifyOutputPath : false
75
75
- task : DotNetCoreCLI@2
78
78
command : ' publish'
79
79
publishWebProjects : false
80
80
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)'
82
82
zipAfterPublish : false
83
83
modifyOutputPath : false
84
84
- task : PowerShell@2
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 13
13
<Description >Building nice looking documention of relational database schemata</Description >
14
14
</PropertyGroup >
15
15
16
- <PropertyGroup Condition =" '$(Configuration)|$(Platform )'=='Release|x64 '" >
16
+ <PropertyGroup Condition =" '$(Configuration)|$(RuntimeIdentifier )'=='Release|win-x86 '" >
17
17
<PublishSingleFile >true</PublishSingleFile >
18
18
</PropertyGroup >
19
- <PropertyGroup Condition =" '$(Configuration)|$(Platform )'=='Release|x86 '" >
19
+ <PropertyGroup Condition =" '$(Configuration)|$(RuntimeIdentifier )'=='Release|win-x64 '" >
20
20
<PublishSingleFile >true</PublishSingleFile >
21
21
</PropertyGroup >
22
- <PropertyGroup Condition =" '$(Configuration)|$(Platform )'=='Release|ARM64 '" >
22
+ <PropertyGroup Condition =" '$(Configuration)|$(RuntimeIdentifier )'=='Release|win-arm64 '" >
23
23
<PublishSingleFile >true</PublishSingleFile >
24
24
</PropertyGroup >
25
25
You can’t perform that action at this time.
0 commit comments