File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ inputs:
28
28
description : ' Build platform. Deafult: '' Any CPU'' '
29
29
required : false
30
30
default : ' Any CPU'
31
- build-project -glob-pattern :
31
+ search -glob-pattern :
32
32
description : ' Search pattern for source code. Default: **/*.csproj'
33
33
required : false
34
34
default : |
66
66
67
67
- name : ' Build with .NET CLI'
68
68
shell : bash
69
- run : dotnet build ${{ inputs.build-project -glob-pattern }} --configuration ${{ inputs.build-configuration }} /p:Platform="${{ inputs.build-platform }}" /p:Version=${{ inputs.assembly-version }} /p:AssemblyInformationalVersion=${{ inputs.assembly-informational-version }} /p:FileVersion=${{ inputs.file-version }}
69
+ run : dotnet build ${{ inputs.search -glob-pattern }} --configuration ${{ inputs.build-configuration }} /p:Platform="${{ inputs.build-platform }}" /p:Version=${{ inputs.assembly-version }} /p:AssemblyInformationalVersion=${{ inputs.assembly-informational-version }} /p:FileVersion=${{ inputs.file-version }}
70
70
71
71
- name : ' Upload build artifacts'
72
72
if : ${{ inputs.upload-build-artifacts == 'true' }}
Original file line number Diff line number Diff line change 80
80
assembly-informational-version : ${{ env.assembly-informational-version }}
81
81
file-version : ${{ env.file-version }}
82
82
treat-warnins-as-error : ${{ env.is-release }}
83
- build -glob-pattern : ${{ vars.SRC_DEFAULT_GLOB_PATTERN }}
83
+ search -glob-pattern : ${{ vars.SRC_DEFAULT_GLOB_PATTERN }}
84
84
85
85
test :
86
86
name : Test with .NET
You can’t perform that action at this time.
0 commit comments