Skip to content

Commit 56f4ba1

Browse files
committed
fixed some issues with stylecop and removed todo sections
1 parent f533c3a commit 56f4ba1

30 files changed

+31
-46
lines changed

.github/workflows/build.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os:
25-
- ubuntu-22.04
26-
- macos-14
2725
- windows-2022
2826

2927
steps:
@@ -44,7 +42,7 @@ jobs:
4442
run: azure-pipelines/variables/_pipelines.ps1
4543
shell: pwsh
4644
- name: 🛠 build
47-
run: dotnet build -t:build,pack --no-restore -c ${{ env.BUILDCONFIGURATION }} -warnAsError -warnNotAsError:NU1901,NU1902,NU1903,NU1904 /bl:"${{ runner.temp }}/_artifacts/build_logs/build.binlog"
45+
run: dotnet build src -t:build,pack --no-restore -c ${{ env.BUILDCONFIGURATION }} -warnAsError -warnNotAsError:NU1901,NU1902,NU1903,NU1904 /bl:"${{ runner.temp }}/_artifacts/build_logs/build.binlog"
4846
- name: 🧪 test
4947
run: azure-pipelines/dotnet-test-cloud.ps1 -Configuration ${{ env.BUILDCONFIGURATION }} -Agent ${{ runner.os }}
5048
shell: pwsh

SUPPORT.md

+2-14
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
# TODO: The maintainer of this repo has not yet edited this file
2-
3-
**REPO OWNER**: Do you want Customer Service & Support (CSS) support for this product/project?
4-
5-
- **No CSS support:** Fill out this template with information about how to file issues and get help.
6-
- **Yes CSS support:** Fill out an intake form at [aka.ms/spot](https://aka.ms/spot). CSS will work with/help you to determine next steps. More details also available at [aka.ms/onboardsupport](https://aka.ms/onboardsupport).
7-
- **Not sure?** Fill out a SPOT intake as though the answer were "Yes". CSS will help you decide.
8-
9-
*Then remove this first heading from this SUPPORT.MD file before publishing your repo.*
10-
111
# Support
122

133
## How to file issues and get help
@@ -16,10 +6,8 @@ This project uses GitHub Issues to track bugs and feature requests. Please searc
166
issues before filing new issues to avoid duplicates. For new issues, file your bug or
177
feature request as a new Issue.
188

19-
For help and questions about using this project, please **REPO MAINTAINER: INSERT INSTRUCTIONS HERE
20-
FOR HOW TO ENGAGE REPO OWNERS OR COMMUNITY FOR HELP. COULD BE A STACK OVERFLOW TAG OR OTHER
21-
CHANNEL. WHERE WILL YOU HELP PEOPLE?**.
9+
For help and questions about using this project, please create an issue.
2210

2311
## Microsoft Support Policy
2412

25-
Support for this **PROJECT or PRODUCT** is limited to the resources listed above.
13+
Support for this **json-document-transforms** is limited to the resources listed above.

azure-pipelines/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ jobs:
234234
Is1ESPT: ${{ parameters.Is1ESPT }}
235235
RunTests: ${{ parameters.RunTests }}
236236
- ${{ if parameters.EnableDotNetFormatCheck }}:
237-
- script: dotnet format --verify-no-changes --no-restore
237+
- script: dotnet format --verify-no-changes --no-restore src
238238
displayName: 💅 Verify formatted code
239239

240240
- ${{ if parameters.EnableMacOSBuild }}:

azure-pipelines/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ resources:
99
ref: refs/tags/release
1010
pipelines:
1111
- pipeline: CI
12-
source: Library # TODO: This should match the name of your CI pipeline
12+
source: json-document-transforms-ci # TODO: This should match the name of your CI pipeline
1313
trigger:
1414
tags:
1515
- auto-release
@@ -58,7 +58,7 @@ extends:
5858
- task: GitHubRelease@1
5959
displayName: 📢 GitHub release (create)
6060
inputs:
61-
gitHubConnection: # TODO: fill in service connection here
61+
gitHubConnection: ttstanley # TODO: fill in service connection here
6262
repositoryName: $(Build.Repository.Name)
6363
target: $(resources.pipeline.CI.sourceCommit)
6464
tagSource: userSpecifiedTag

src/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
using System.Runtime.InteropServices;
55

src/Microsoft.VisualStudio.Jdt/IJsonTransformationLogger.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/JdtException.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/JdtExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/JdtUtilities.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/JsonTransformation.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/JsonTransformationContextLogger.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/Attributes/JdtAttributeExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/Attributes/JdtAttributeValidator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtArrayProcessor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtDefault.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtMerge.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtProcessor.ProcessorChain.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtProcessor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtRecurse.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtRemove.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtRename.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtReplace.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/Microsoft.VisualStudio.Jdt/Processors/JdtValidator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt
55
{

src/stylecop.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"companyName": "Microsoft Corporation",
77
"copyrightText": "Copyright (c) {companyName}. All rights reserved.\nLicensed under the {licenseName} license. See {licenseFile} file in the project root for full license information.",
88
"variables": {
9-
"licenseName": "MIT License",
9+
"licenseName": "MIT",
1010
"licenseFile": "LICENSE"
1111
},
1212
"xmlHeader": false

test/Microsoft.VisualStudio.Jdt.Tests/JdtUtilitiesTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt.Tests
55
{

test/Microsoft.VisualStudio.Jdt.Tests/JsonTransformationTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt.Tests
55
{

test/Microsoft.VisualStudio.Jdt.Tests/JsonTransformationTestLogger.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt.Tests
55
{

test/Microsoft.VisualStudio.Jdt.Tests/Microsoft.VisualStudio.Jdt.Tests.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Microsoft.VisualStudio.Internal.MicroBuild.NonShipping" />
1615
<PackageReference Include="Microsoft.NET.Test.Sdk" />
1716
<PackageReference Include="Newtonsoft.Json" />
1817
<PackageReference Include="xunit" />

test/Microsoft.VisualStudio.Jdt.Tests/ReadOnlyTempFile.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt.Tests
55
{

test/Microsoft.VisualStudio.Jdt.Tests/TransformTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License license. See LICENSE file in the project root for full license information.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace Microsoft.VisualStudio.Jdt.Tests
55
{

0 commit comments

Comments
 (0)