Skip to content

Commit

Permalink
Convert RulesetToEditorconfigConverter to a .NET CLI tool
Browse files Browse the repository at this point in the history
  • Loading branch information
paulomorgado committed Sep 6, 2023
1 parent 151bbbe commit 911cbf1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Binary file added msbuild.binlog
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472</TargetFrameworks>
<TargetFramework>$(NetCurrent)</TargetFramework>

<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>$(ProjectName)</ToolCommandName>
<IncludeBuildOutput>false</IncludeBuildOutput>
<NuspecPackageId>Microsoft.CodeAnalysis.RulesetToEditorconfigConverter</NuspecPackageId>
<Description>Utility to convert ruleset files to equivalent .editorconfig files. Editorconfig files are respected by C# and VB compilers on VS2019 16.3 or later. See https://learn.microsoft.com/visualstudio/code-quality/use-roslyn-analyzers#set-rule-severity-in-an-editorconfig-file for details.</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net472</TargetFrameworks>
<TargetFramework>$(NetCurrent)</TargetFramework>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<IsShipping>true</IsShipping>
<ReleaseTrackingOptOut>true</ReleaseTrackingOptOut>
Expand Down

0 comments on commit 911cbf1

Please sign in to comment.