Browse Source
Merge branch 'master' into remove_header
pull/9167/head
Max Katz
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
11 additions and
0 deletions
-
.editorconfig
-
src/Markup/Avalonia.Markup.Xaml.Loader/Avalonia.Markup.Xaml.Loader.csproj
-
src/tools/Avalonia.Designer.HostApp/Avalonia.Designer.HostApp.csproj
|
|
|
@ -141,6 +141,8 @@ dotnet_analyzer_diagnostic.category-Performance.severity = none #error - Uncomme |
|
|
|
dotnet_diagnostic.CA1802.severity = warning |
|
|
|
# CA1825: Avoid zero-length array allocations |
|
|
|
dotnet_diagnostic.CA1825.severity = warning |
|
|
|
# CA1821: Remove empty finalizers |
|
|
|
dotnet_diagnostic.CA1821.severity = warning |
|
|
|
|
|
|
|
# Wrapping preferences |
|
|
|
csharp_wrap_before_ternary_opsigns = false |
|
|
|
|
|
|
|
@ -5,6 +5,11 @@ |
|
|
|
<IsPackable>true</IsPackable> |
|
|
|
<PackageId>Avalonia.Markup.Xaml.Loader</PackageId> |
|
|
|
<DefineConstants>$(DefineConstants);XAMLX_INTERNAL</DefineConstants> |
|
|
|
<LangVersion>10</LangVersion> |
|
|
|
</PropertyGroup> |
|
|
|
<!--Disable Net Perf. analyzer for submodule to avoid commit issue --> |
|
|
|
<PropertyGroup> |
|
|
|
<EnableNETAnalyzers>false</EnableNETAnalyzers> |
|
|
|
</PropertyGroup> |
|
|
|
<Import Project="IncludeXamlIlSre.props" /> |
|
|
|
<ItemGroup> |
|
|
|
|
|
|
|
@ -3,6 +3,10 @@ |
|
|
|
<OutputType>Exe</OutputType> |
|
|
|
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks> |
|
|
|
</PropertyGroup> |
|
|
|
<!--Disable Net Perf. analyzer for submodule to avoid commit issue --> |
|
|
|
<PropertyGroup> |
|
|
|
<EnableNETAnalyzers>false</EnableNETAnalyzers> |
|
|
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="..\..\Avalonia.DesignerSupport\Avalonia.DesignerSupport.csproj" /> |
|
|
|
<ProjectReference Include="..\..\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj" /> |
|
|
|
|