-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
116 changed files
with
6,317 additions
and
1,299 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
is_global = true | ||
|
||
# Use ArgumentNullException throw helper - requires .NET 7+ | ||
dotnet_diagnostic.CA1510.severity = none | ||
|
||
|
||
# Wrong ending tag | ||
dotnet_diagnostic.CS1570.severity = none | ||
|
||
# Missing param tag | ||
dotnet_diagnostic.CS1573.severity = none | ||
|
||
# Missing comment | ||
dotnet_diagnostic.CS1591.severity = none | ||
|
||
|
||
# Use primary constructor - requires C# 12+ | ||
dotnet_diagnostic.IDE0290.severity = none | ||
|
||
# Use pattern matching (not operator) - requires C# 9.0+ | ||
dotnet_diagnostic.IDE0083.severity = none | ||
|
||
# Simplify new expression - requires C# 9.0+ | ||
dotnet_diagnostic.IDE0090.severity = none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
layout: default | ||
title: "Changelog" | ||
nav_order: 100 | ||
nav_order: 101 | ||
--- | ||
|
||
{% include NeatMapperChangelog.md %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
layout: default | ||
title: "Contributing" | ||
nav_order: 100 | ||
description: ".NET Object mapper and projector, with configurable and reusable mappings. Supports collections and generic types. Also supports asynchronous maps and services via Dependency Injection (DI)." | ||
--- | ||
|
||
You can contribute by creating issues for: bug fixes, feature requests or tests in the [official repository](https://github.com/Xriuk/NeatMapper). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
src/NeatMapper.Analyzers.Vsix/NeatMapper.Analyzers.Vsix.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" /> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net472</TargetFramework> | ||
<RootNamespace>NeatMapper.Analyzers.Vsix</RootNamespace> | ||
<AssemblyName>NeatMapper.Analyzers.Vsix</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<GeneratePkgDefFile>false</GeneratePkgDefFile> | ||
<IncludeAssemblyInVSIXContainer>false</IncludeAssemblyInVSIXContainer> | ||
<IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer> | ||
<IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment> | ||
<CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory> | ||
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory> | ||
<VSSDKTargetPlatformRegRootSuffix>Roslyn</VSSDKTargetPlatformRegRootSuffix> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="16.8.3038" PrivateAssets="all" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<StartAction>Program</StartAction> | ||
<StartProgram>$(DevEnvDir)devenv.exe</StartProgram> | ||
<StartArguments>/rootsuffix $(VSSDKTargetPlatformRegRootSuffix)</StartArguments> | ||
</PropertyGroup> | ||
|
||
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> | ||
|
||
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="Exists('$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets')" /> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\NeatMapper.Analyzers\NeatMapper.Analyzers.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- https://github.com/dotnet/sdk/issues/433 --> | ||
<ProjectReference Update="@(ProjectReference)" AdditionalProperties="TargetFramework=netstandard2.0" /> | ||
|
||
<!-- https://github.com/Microsoft/extendvs/issues/57 --> | ||
<ProjectReference Update="@(ProjectReference)" Name="%(Filename)" /> | ||
</ItemGroup> | ||
|
||
</Project> |
22 changes: 22 additions & 0 deletions
22
src/NeatMapper.Analyzers.Vsix/source.extension.vsixmanifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011"> | ||
<Metadata> | ||
<Identity Id="NeatMapper.Analyzers.73feabe2-f116-47dd-ae96-e3908c1f56d0" Version="1.0" Language="en-US" Publisher="Xriuk"/> | ||
<DisplayName>NeatMapper.Analyzers</DisplayName> | ||
<Description xml:space="preserve">Internal extension to test NeatMapper analyzers and code fixes.</Description> | ||
</Metadata> | ||
<Installation> | ||
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,)" /> | ||
</Installation> | ||
<Dependencies> | ||
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" /> | ||
</Dependencies> | ||
<Assets> | ||
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="NeatMapper.Analyzers" Path="|NeatMapper.Analyzers|"/> | ||
<Asset Type="Microsoft.VisualStudio.Analyzer" d:Source="Project" d:ProjectName="NeatMapper.Analyzers" Path="|NeatMapper.Analyzers|"/> | ||
</Assets> | ||
<Prerequisites> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,)" DisplayName="Visual Studio core editor" /> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.LanguageServices" Version="[15.0,)" DisplayName="Roslyn Language Services" /> | ||
</Prerequisites> | ||
</PackageManifest> |
Oops, something went wrong.