Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit f9c7931

Browse files
committed
ref nuget
1 parent 9eb9996 commit f9c7931

File tree

7 files changed

+35
-24
lines changed

7 files changed

+35
-24
lines changed

Directory.Packages.props

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,14 @@
1111
<PackageVersion Include="Avalonia.Diagnostics" Version="0.10.10" />
1212
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
1313
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
14+
<PackageVersion Include="HarfBuzzSharp" Version="2.8.2-preview.155" />
15+
<PackageVersion Include="HarfBuzzSharp.NativeAssets.Linux" Version="2.8.2-preview.155" />
16+
<PackageVersion Include="SkiaSharp" Version="2.88.0-preview.155" />
17+
<PackageVersion Include="SkiaSharp.NativeAssets.Linux" Version="2.88.0-preview.155" />
18+
<PackageVersion Include="NotifyIcon.Base" Version="1.0.4" />
19+
<PackageVersion Include="NotifyIcon" Version="1.0.4" />
20+
<PackageVersion Include="NotifyIcon.Windows" Version="1.0.4" />
21+
<PackageVersion Include="NotifyIcon.Mac" Version="1.0.4" />
22+
<PackageVersion Include="NotifyIcon.Linux" Version="1.0.4" />
1423
</ItemGroup>
1524
</Project>

Samples.AvaloniaApp1/Samples.AvaloniaApp1.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,14 @@
3232
<PackageReference Include="OperatingSystem2" />
3333
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
3434
<PackageReference Include="MonoMac.NetStandard" />
35+
<PackageReference Include="SkiaSharp" />
36+
<PackageReference Include="SkiaSharp.NativeAssets.Linux" />
37+
<PackageReference Include="HarfBuzzSharp" />
38+
<PackageReference Include="HarfBuzzSharp.NativeAssets.Linux" />
39+
<PackageReference Include="NotifyIcon" />
3540
</ItemGroup>
3641

3742
<ItemGroup>
38-
<ProjectReference Include="..\NotifyIcon\NotifyIcon.csproj" />
3943
<ProjectReference Include="..\Samples.ClassLibrary1\Samples.ClassLibrary1.csproj" />
4044
</ItemGroup>
4145
</Project>

Samples.ClassLibrary1/Samples.ClassLibrary1.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
<RootNamespace>Samples</RootNamespace>
66
</PropertyGroup>
77

8-
<ItemGroup>
9-
<ProjectReference Include="..\NotifyIcon.Platform\NotifyIcon.Platform.csproj" />
10-
</ItemGroup>
11-
128
<ItemGroup>
139
<Compile Update="Properties\Resources.Designer.cs">
1410
<DesignTime>True</DesignTime>
@@ -27,6 +23,7 @@
2723
<ItemGroup>
2824
<PackageReference Include="ReactiveUI" />
2925
<PackageReference Include="OperatingSystem2" />
26+
<PackageReference Include="NotifyIcon.Base" />
3027
</ItemGroup>
3128

3229
</Project>

Samples.ConsoleApp1/Properties/PublishProfiles/win-x64.pubxml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
66
<PropertyGroup>
77
<Configuration>Release</Configuration>
88
<Platform>Any CPU</Platform>
9-
<PublishDir>bin\Release\Publish\osx-x64</PublishDir>
9+
<PublishDir>bin\Release\Publish\win-x64</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
1111
<TargetFramework>net6.0</TargetFramework>
12-
<RuntimeIdentifier>osx.10.14-x64</RuntimeIdentifier>
12+
<RuntimeIdentifier>win7-x64</RuntimeIdentifier>
1313
<SelfContained>true</SelfContained>
14-
<PublishSingleFile>true</PublishSingleFile>
14+
<PublishSingleFile>false</PublishSingleFile>
15+
<PublishReadyToRun>false</PublishReadyToRun>
1516
<PublishTrimmed>false</PublishTrimmed>
1617
<DebugType>none</DebugType>
1718
<DebugSymbols>false</DebugSymbols>

Samples.ConsoleApp1/Samples.ConsoleApp1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<ProjectReference Include="..\NotifyIcon\NotifyIcon.csproj" />
2726
<ProjectReference Include="..\Samples.ClassLibrary1\Samples.ClassLibrary1.csproj" />
2827
</ItemGroup>
2928

3029
<ItemGroup>
3130
<PackageReference Include="OperatingSystem2" />
3231
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
3332
<PackageReference Include="MonoMac.NetStandard" />
33+
<PackageReference Include="NotifyIcon" />
3434
</ItemGroup>
3535

3636
</Project>

Samples.WpfApp1/Properties/PublishProfiles/win-x64.pubxml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
https://go.microsoft.com/fwlink/?LinkID=208121.
44
-->
55
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6-
<PropertyGroup>
7-
<Configuration>Release</Configuration>
8-
<Platform>Any CPU</Platform>
9-
<PublishDir>bin\Release\Publish\win-x64</PublishDir>
10-
<PublishProtocol>FileSystem</PublishProtocol>
11-
<TargetFramework>net6.0-windows</TargetFramework>
12-
<RuntimeIdentifier>win81-x64</RuntimeIdentifier>
13-
<SelfContained>true</SelfContained>
14-
<!--Single file deployment isn't compatible with Windows 7.-->
15-
<PublishSingleFile>true</PublishSingleFile>
16-
<PublishReadyToRun>false</PublishReadyToRun>
17-
<PublishTrimmed>false</PublishTrimmed>
18-
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
19-
</PropertyGroup>
6+
<PropertyGroup>
7+
<Configuration>Release</Configuration>
8+
<Platform>Any CPU</Platform>
9+
<PublishDir>bin\Release\Publish\win-x64</PublishDir>
10+
<PublishProtocol>FileSystem</PublishProtocol>
11+
<TargetFramework>net6.0</TargetFramework>
12+
<RuntimeIdentifier>win7-x64</RuntimeIdentifier>
13+
<SelfContained>true</SelfContained>
14+
<PublishSingleFile>false</PublishSingleFile>
15+
<PublishReadyToRun>false</PublishReadyToRun>
16+
<PublishTrimmed>false</PublishTrimmed>
17+
<DebugType>none</DebugType>
18+
<DebugSymbols>false</DebugSymbols>
19+
</PropertyGroup>
2020
</Project>

Samples.WpfApp1/Samples.WpfApp1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<ProjectReference Include="..\NotifyIcon.Platform.Windows\NotifyIcon.Platform.Windows.csproj" />
2019
<ProjectReference Include="..\Samples.ClassLibrary1\Samples.ClassLibrary1.csproj" />
2120
</ItemGroup>
2221

2322
<ItemGroup>
2423
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
24+
<PackageReference Include="NotifyIcon.Windows" />
2525
</ItemGroup>
2626

2727
</Project>

0 commit comments

Comments
 (0)