forked from AvaloniaUI/Avalonia
-
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.
Remove "netcoreapp2.0" target from the Avalonia. Make previewer use n…
…etstandard2.0 (AvaloniaUI#14268) * Remove "netcoreapp2.0" target from the Avalonia. Make previewer use netstandard2.0 * Update ApiDiff redirects
- Loading branch information
Showing
11 changed files
with
38 additions
and
37 deletions.
There are no files selected for viewing
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
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
17 changes: 17 additions & 0 deletions
17
src/Markup/Avalonia.Markup.Xaml.Loader/IncludeXamlIlSre.props
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,9 +1,26 @@ | ||
<Project> | ||
<!--Disable Net Perf. analyzer for submodule to avoid commit issue --> | ||
<PropertyGroup> | ||
<EnableNETAnalyzers>false</EnableNETAnalyzers> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="$(MSBuildThisFileDirectory)\xamlil.github\**\*.*" /> | ||
<Content Remove="$(MSBuildThisFileDirectory)\xamlil.github\**\*.*" /> | ||
<Compile Remove="$(MSBuildThisFileDirectory)\xamlil.github\**\*.*" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)\xamlil.github\src\XamlX\**\*.cs" /> | ||
<Compile Remove="$(MSBuildThisFileDirectory)\xamlil.github\**\obj\**\*.cs" /> | ||
|
||
<!-- Polyfills used by XamlX, but re-imported from this repository --> | ||
<Compile Include="$(MSBuildThisFileDirectory)\..\..\Avalonia.Base\Metadata\NullableAttributes.cs" Link="NullableAttributes.cs" Visible="False" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)\..\..\Avalonia.Base\Compatibility\TrimmingAttributes.cs" Link="TrimmingAttributes.cs" Visible="False" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)\..\..\Shared\IsExternalInit.cs" Link="Compatibility\IsExternalInit.cs" /> | ||
|
||
<!-- Utilities used by XamlX Avalonia SRE --> | ||
<Compile Include="$(MSBuildThisFileDirectory)\..\..\Avalonia.Base\Utilities\StringBuilderCache.cs" Link="Utilities\StringBuilderCache.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="!('$(TargetFrameworkIdentifier)' == '.NETCoreApp' AND $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '6.0')))"> | ||
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" /> | ||
</ItemGroup> | ||
</Project> |
19 changes: 4 additions & 15 deletions
19
src/tools/Avalonia.Designer.HostApp/Avalonia.Designer.HostApp.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 |
---|---|---|
@@ -1,31 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks> | ||
<TargetFrameworks>net461;netstandard2.0;net6.0</TargetFrameworks> | ||
<DefineConstants>$(DefineConstants);XAMLX_INTERNAL</DefineConstants> | ||
</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="..\..\Avalonia.Base\Avalonia.Base.csproj" /> | ||
<ProjectReference Include="..\..\Avalonia.Controls\Avalonia.Controls.csproj" /> | ||
<ProjectReference Include="..\..\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" /> | ||
<ProjectReference Include="..\..\Avalonia.Themes.Simple\Avalonia.Themes.Simple.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\..\..\src\Markup\Avalonia.Markup.Xaml.Loader\IncludeXamlIlSre.props" /> | ||
<ItemGroup> | ||
<Compile Include="..\..\..\src\Markup\Avalonia.Markup.Xaml.Loader\CompilerExtensions\**\*.cs" /> | ||
<Compile Include="..\..\..\src\Markup\Avalonia.Markup.Xaml.Loader\AvaloniaXamlIlRuntimeCompiler.cs" /> | ||
<Compile Include="..\..\..\src\Markup\Avalonia.Markup.Xaml.Loader\CompilerDynamicDependencies.cs" /> | ||
<Compile Include="..\..\Avalonia.Base\Utilities\StringBuilderCache.cs" Link="Utilities\StringBuilderCache.cs" /> | ||
<Compile Include="..\..\Avalonia.Base\Compatibility\TrimmingAttributes.cs" Link="TrimmingAttributes.cs" Visible="False" /> | ||
<Compile Include="..\..\Shared\IsExternalInit.cs" Link="Compatibility\IsExternalInit.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Avalonia.Angle.Windows.Natives" Version="2.1.22045.20230930" /> | ||
</ItemGroup> | ||
<Import Project="..\..\..\build\NetFX.props" /> | ||
<Import Project="..\..\..\src\Markup\Avalonia.Markup.Xaml.Loader\IncludeXamlIlSre.props" /> | ||
<Import Project="..\..\..\build\DevAnalyzers.props" /> | ||
<Import Project="..\..\..\build\TrimmingEnable.props" /> | ||
</Project> |
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