File tree Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 8
8
<PackageVersion Include =" CommunityToolkit.WinUI.Controls.LayoutTransformControl" Version =" 8.1.240916" />
9
9
<PackageVersion Include =" CommunityToolkit.WinUI.Controls.Sizers" Version =" 8.1.240916" />
10
10
<PackageVersion Include =" CommunityToolkit.WinUI.Triggers" Version =" 8.1.240916" />
11
+ <PackageVersion Include =" Microsoft.Web.WebView2" Version =" 1.0.3065.39" />
11
12
<PackageVersion Include =" Microsoft.Windows.SDK.BuildTools" Version =" 10.0.26100.1742" />
12
13
<PackageVersion Include =" Microsoft.WindowsAppSDK" Version =" 1.6.250205002" />
13
14
<PackageVersion Include =" Roslynator.Analyzers" Version =" 4.13.1" />
Original file line number Diff line number Diff line change 1
1
# WinUI.Dock
2
2
3
+ [ ![ NuGet Version] ( https://img.shields.io/nuget/v/WinUI.Dock )] ( https://nuget.org/packages/WinUI.Dock )
4
+
3
5
WinUI.Dock is a docking control similar to Visual Studio, based on WinUI 3. Its design is inspired by [ AvalonDock] ( https://github.com/Dirkster99/AvalonDock ) and [ ImGui] ( https://github.com/ocornut/imgui ) .
4
6
5
7
## Supported Platforms
Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ internal static class Program
11
11
[ STAThread ]
12
12
private static void Main ( string [ ] _ )
13
13
{
14
- CompositionConfiguration . Configuration = CompositionConfiguration . Options . Enabled ;
15
-
16
- #if DEBUG
17
14
LogExtensionPoint . AmbientLoggerFactory = LoggerFactory . Create ( builder =>
18
15
{
19
16
builder . AddConsole ( ) ;
@@ -22,7 +19,8 @@ private static void Main(string[] _)
22
19
} ) ;
23
20
24
21
LoggingAdapter . Initialize ( ) ;
25
- #endif
22
+
23
+ CompositionConfiguration . Configuration = CompositionConfiguration . Options . Enabled ;
26
24
27
25
SkiaHost host = SkiaHostBuilder . Create ( )
28
26
. App ( ( ) => new App ( ) )
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
+ <EnableMsixTooling >true</EnableMsixTooling >
5
+ <GenerateLibraryLayout >true</GenerateLibraryLayout >
6
+ <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
4
7
<TargetFrameworks >net9.0-windows10.0.22621.0;net9.0</TargetFrameworks >
5
- <GeneratePackageOnBuild >True</GeneratePackageOnBuild >
6
8
</PropertyGroup >
7
9
8
10
<PropertyGroup >
9
11
<Title >$(AssemblyName)</Title >
10
- <Version >1.0.0 </Version >
12
+ <Version >1.0.2 </Version >
11
13
<Authors >qian-o</Authors >
12
14
<Copyright >MIT</Copyright >
13
15
<PackageTags >WinUI;Dock;DockManager</PackageTags >
24
26
25
27
<ItemGroup >
26
28
<None Include =" ..\..\LICENSE" >
27
- <Pack >True </Pack >
29
+ <Pack >true </Pack >
28
30
<PackagePath >\</PackagePath >
29
31
</None >
30
32
</ItemGroup >
31
33
32
34
<ItemGroup >
33
35
<None Include =" ..\..\README.md" >
34
- <Pack >True </Pack >
36
+ <Pack >true </Pack >
35
37
<PackagePath >\</PackagePath >
36
38
</None >
37
39
</ItemGroup >
38
40
39
41
<Choose >
40
42
<When Condition =" $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'" >
41
43
<ItemGroup >
42
- <PackageReference Include =" Microsoft.Windows.SDK.BuildTools" />
43
44
<PackageReference Include =" Microsoft.WindowsAppSDK" />
45
+ <PackageReference Include =" Microsoft.Web.WebView2" IncludeAssets =" none" />
44
46
</ItemGroup >
45
47
</When >
46
48
<Otherwise >
You can’t perform that action at this time.
0 commit comments