-
-
Notifications
You must be signed in to change notification settings - Fork 102
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
1 parent
a5acb9f
commit 5e08ea6
Showing
36 changed files
with
223 additions
and
50 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
24 changes: 24 additions & 0 deletions
24
src/Avalonia.Controls.ProportionalStackPanel/Avalonia.Controls.ProportionalStackPanel.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,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks> | ||
<OutputType>Library</OutputType> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>Avalonia.Controls.ProportionalStackPanel</PackageId> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\..\build\Base.props" /> | ||
<Import Project="..\..\build\SignAssembly.props" /> | ||
<Import Project="..\..\build\SourceLink.props" /> | ||
<Import Project="..\..\build\ReferenceAssemblies.props" /> | ||
<Import Project="..\..\build\Avalonia.props" /> | ||
|
||
<ItemGroup> | ||
<AvaloniaResource Include="Assets\*" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" /> | ||
</ItemGroup> | ||
|
||
</Project> |
3 changes: 3 additions & 0 deletions
3
src/Avalonia.Controls.ProportionalStackPanel/Properties/AssemblyInfo.cs
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,3 @@ | ||
using Avalonia.Metadata; | ||
|
||
[assembly: XmlnsDefinition("https://github.com/avaloniaui", "Avalonia.Controls")] |
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
File renamed without changes.
8 changes: 2 additions & 6 deletions
8
...s/ProportionalStackPanelSplitter.axaml.cs → ...l/ProportionalStackPanelSplitter.axaml.cs
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
23 changes: 23 additions & 0 deletions
23
src/Avalonia.Controls.Recycling.Model/Avalonia.Controls.Recycling.Model.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,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks> | ||
<OutputType>Library</OutputType> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>Avalonia.Controls.Recycling.Model</PackageId> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\..\build\Base.props" /> | ||
<Import Project="..\..\build\SignAssembly.props" /> | ||
<Import Project="..\..\build\SourceLink.props" /> | ||
<Import Project="..\..\build\ReferenceAssemblies.props" /> | ||
|
||
<ItemGroup> | ||
<AvaloniaResource Include="Assets\*" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" /> | ||
</ItemGroup> | ||
|
||
</Project> |
2 changes: 1 addition & 1 deletion
2
src/Dock.Model/Core/IControlRecycling.cs → ...rols.Recycling.Model/IControlRecycling.cs
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,4 +1,4 @@ | ||
namespace Dock.Model.Core; | ||
namespace Avalonia.Controls.Recycling.Model; | ||
|
||
/// <summary> | ||
/// | ||
|
13 changes: 13 additions & 0 deletions
13
src/Avalonia.Controls.Recycling.Model/IControlRecyclingIdProvider.cs
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,13 @@ | ||
namespace Avalonia.Controls.Recycling.Model; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public interface IControlRecyclingIdProvider | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
/// <returns></returns> | ||
string? GetControlRecyclingId(); | ||
} |
28 changes: 28 additions & 0 deletions
28
src/Avalonia.Controls.Recycling/Avalonia.Controls.Recycling.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,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks> | ||
<OutputType>Library</OutputType> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>Avalonia.Controls.Recycling</PackageId> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\..\build\Base.props" /> | ||
<Import Project="..\..\build\SignAssembly.props" /> | ||
<Import Project="..\..\build\SourceLink.props" /> | ||
<Import Project="..\..\build\ReferenceAssemblies.props" /> | ||
<Import Project="..\..\build\Avalonia.props" /> | ||
|
||
<ItemGroup> | ||
<AvaloniaResource Include="Assets\*" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Avalonia.Controls.Recycling.Model\Avalonia.Controls.Recycling.Model.csproj" /> | ||
</ItemGroup> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
using Avalonia.Metadata; | ||
|
||
[assembly: XmlnsDefinition("https://github.com/avaloniaui", "Avalonia.Controls.Recycling")] |
7 changes: 2 additions & 5 deletions
7
...ontrols/Recycling/RecylingDataTemplate.cs → ...ontrols.Recycling/RecylingDataTemplate.cs
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
24 changes: 24 additions & 0 deletions
24
src/Avalonia.MarkupExtension/Avalonia.MarkupExtension.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,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks> | ||
<OutputType>Library</OutputType> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>Avalonia.MarkupExtension</PackageId> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\..\build\Base.props" /> | ||
<Import Project="..\..\build\SignAssembly.props" /> | ||
<Import Project="..\..\build\SourceLink.props" /> | ||
<Import Project="..\..\build\ReferenceAssemblies.props" /> | ||
<Import Project="..\..\build\Avalonia.props" /> | ||
|
||
<ItemGroup> | ||
<AvaloniaResource Include="Assets\*" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" /> | ||
</ItemGroup> | ||
|
||
</Project> |
2 changes: 1 addition & 1 deletion
2
...Avalonia/MarkupExtension/LoadExtension.cs → ...Avalonia.MarkupExtension/LoadExtension.cs
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,3 @@ | ||
using Avalonia.Metadata; | ||
|
||
[assembly: XmlnsDefinition("https://github.com/avaloniaui", "Avalonia.MarkupExtension")] |
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
Oops, something went wrong.