Added NrxDebugVisualizer folder
This commit is contained in:
51
NrxDebugVisualizer/Directory.Build.props
Normal file
51
NrxDebugVisualizer/Directory.Build.props
Normal file
@@ -0,0 +1,51 @@
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<RepoRootPath>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\..\'))</RepoRootPath>
|
||||
<BaseIntermediateOutputPath>$(RepoRootPath)obj\samples\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
|
||||
<BaseOutputPath Condition=" '$(BaseOutputPath)' == '' ">$(RepoRootPath)bin\samples\$(MSBuildProjectName)\</BaseOutputPath>
|
||||
<SignAssembly>false</SignAssembly>
|
||||
<IsPackable>false</IsPackable>
|
||||
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
||||
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)shipping.ruleset</CodeAnalysisRuleSet>
|
||||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
||||
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
||||
<AnalysisLevel>latest</AnalysisLevel>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<!--
|
||||
Make sure any documentation comments which are included in code get checked for syntax during the build, but do
|
||||
not report warnings for missing comments.
|
||||
|
||||
SA1600: Elements must be documented
|
||||
SA1602: Enumeration items must be documented
|
||||
CS1591: Missing XML comment
|
||||
-->
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<NoWarn>$(NoWarn);SA1600;SA1602;CS1591</NoWarn>
|
||||
|
||||
<!--
|
||||
StyleCop.Analyzers warnings that are not updated to C# 12 yet.
|
||||
|
||||
SA1010: Opening square brackets should not be preceded by a space
|
||||
-->
|
||||
<NoWarn>$(NoWarn);SA1010</NoWarn>
|
||||
|
||||
<!--
|
||||
Microsoft.CodeAnalysis.NetAnalyzers warnings.
|
||||
|
||||
CA1812: Avoid uninstantiated internal classes
|
||||
CA1303: Do not pass literals as localized parameters
|
||||
-->
|
||||
<NoWarn>$(NoWarn);CA1812;CA1303</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556" PrivateAssets="all" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" Link="stylecop.json" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user