Skip to content

Commit 6be6e20

Browse files
committed
revert lineending change
1 parent db191f1 commit 6be6e20

File tree

130 files changed

+6179
-6179
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+6179
-6179
lines changed

LICENSE

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
2-
3-
Copyright (c) 2020 fiskaltrust
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2020 fiskaltrust
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

azure-pipelines.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ pr:
1212
- master
1313

1414
variables:
15-
- group: "Code Signing Certificates"
15+
- group: 'Code Signing Certificates'
1616
- name: BuildConfiguration
1717
value: release
1818
- name: BuildPlatform
1919
value: any cpu
2020
- name: Solution
21-
value: "fiskaltrust.Middleware.Interface.sln"
21+
value: 'fiskaltrust.Middleware.Interface.sln'
2222

2323
jobs:
2424
- job: Build
@@ -36,58 +36,58 @@ jobs:
3636

3737
- task: yavt@1
3838
inputs:
39-
mode: "Multi"
40-
semverVersion: "v1"
39+
mode: 'Multi'
40+
semverVersion: 'v1'
4141

4242
- task: DotNetCoreCLI@2
4343
displayName: Restore
4444
inputs:
45-
command: "restore"
46-
projects: "**/*.csproj"
47-
feedsToUse: "select"
48-
vstsFeed: "dev" # TODO Remove before merge
45+
command: 'restore'
46+
projects: '**/*.csproj'
47+
feedsToUse: 'select'
48+
vstsFeed: 'dev' # TODO Remove before merge
4949

5050
- task: DotNetCoreCLI@2
5151
displayName: Build
5252
inputs:
53-
projects: "$(Solution)"
54-
arguments: "--configuration $(BuildConfiguration)"
53+
projects: '$(Solution)'
54+
arguments: '--configuration $(BuildConfiguration)'
5555

5656
- task: codesigning@2
57-
displayName: "Code Signing "
57+
displayName: 'Code Signing '
5858
inputs:
59-
secureFileId: "codesigning.pfx"
60-
signCertPassword: "$(Code_Signing_Password)"
59+
secureFileId: 'codesigning.pfx'
60+
signCertPassword: '$(Code_Signing_Password)'
6161
filePaths: |
6262
**/fiskaltrust*.dll
6363
**/fiskaltrust*.exe
6464
6565
- script: dotnet test --no-build --configuration $(buildConfiguration) --test-adapter-path:. --logger:nunit;LogFilePath=TestResults.xml
66-
displayName: "dotnet test ifPOS"
67-
workingDirectory: 'test\fiskaltrust.ifPOS.Tests'
66+
displayName: 'dotnet test ifPOS'
67+
workingDirectory: 'test\fiskaltrust.ifPOS.Tests'
6868

6969
- script: dotnet test --no-build --configuration $(buildConfiguration) --test-adapter-path:. --logger:nunit;LogFilePath=TestResults.xml
70-
displayName: "dotnet test Clients"
71-
workingDirectory: 'test\fiskaltrust.Middleware.Interface.Client.Tests'
70+
displayName: 'dotnet test Clients'
71+
workingDirectory: 'test\fiskaltrust.Middleware.Interface.Client.Tests'
7272

7373
- task: PublishTestResults@2
74-
displayName: "Publish Test Results"
74+
displayName: 'Publish Test Results'
7575
inputs:
7676
testResultsFormat: NUnit
77-
testResultsFiles: "**/*TestResults*.xml"
77+
testResultsFiles: '**/*TestResults*.xml'
7878
mergeTestResults: true
7979
failTaskOnFailedTests: true
8080
buildConfiguration: $(buildConfiguration)
8181

8282
- task: DotNetCoreCLI@2
8383
displayName: dotnet pack
8484
inputs:
85-
command: "pack"
86-
packagesToPack: "src/**/*.csproj"
85+
command: 'pack'
86+
packagesToPack: 'src/**/*.csproj'
8787
nobuild: true
88-
versioningScheme: "off"
88+
versioningScheme: 'off'
8989

9090
- task: PublishBuildArtifacts@1
91-
displayName: "Publish Artifact: drop"
91+
displayName: 'Publish Artifact: drop'
9292
inputs:
93-
PathtoPublish: "$(build.artifactstagingdirectory)"
93+
PathtoPublish: '$(build.artifactstagingdirectory)'

0 commit comments

Comments
 (0)