Skip to content

Commit daa7bc4

Browse files
target .net 9 only
1 parent b078279 commit daa7bc4

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Src/SamplesByPlatforms/Xceed.Blazor.Zip.Sample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Xceed.Blazor.Zip.Sample.Components;
2-
Xceed.Zip.Licenser.LicenseKey = "XXXXX-XXXXX-XXXXX-YYYY";
2+
Xceed.Zip.Licenser.LicenseKey = "LICENSE_PLACEHOLDER";
33

44
var builder = WebApplication.CreateBuilder( args );
55

Src/SamplesByPlatforms/Xceed.Blazor.Zip.Sample/Xceed.Blazor.Zip.Sample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>

Src/SamplesByPlatforms/Xceed.Console.Zip.Sample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Xceed.Zip;
44

55
Console.Title = "Xceed Zip Sample for .NET";
6-
Xceed.Zip.Licenser.LicenseKey = "XXXXX-XXXXX-XXXXX-YYYY";
6+
Xceed.Zip.Licenser.LicenseKey = "LICENSE_PLACEHOLDER";
77

88
bool opened = false;
99
while( true )

Src/SamplesByPlatforms/Xceed.Console.Zip.Sample/Xceed.Console.Zip.Sample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5+
<TargetFramework>net9.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

Src/SamplesByPlatforms/Xceed.Winform.Zip.Sample/Form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public partial class Form1 : Form
1212
public Form1()
1313
{
1414
InitializeComponent();
15-
Xceed.Zip.Licenser.LicenseKey = "XXXXX-XXXXX-XXXXX-YYYY";
15+
Xceed.Zip.Licenser.LicenseKey = "LICENSE_PLACEHOLDER";
1616
}
1717

1818
private async void CompressFileButton_Click( object sender, EventArgs e )

Src/SamplesByPlatforms/Xceed.Wpf.Zip.Sample/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public partial class MainWindow : Window
1010
public MainWindow()
1111
{
1212
InitializeComponent();
13-
Xceed.Zip.Licenser.LicenseKey = "XXXXX-XXXXX-XXXXX-YYYY";
13+
Xceed.Zip.Licenser.LicenseKey = "LICENSE_PLACEHOLDER";
1414
}
1515

1616
private async void CompressFileButton_Click( object sender, RoutedEventArgs e )

Src/SamplesByPlatforms/Xceed.Wpf.Zip.Sample/Xceed.Wpf.Zip.Sample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
5-
<TargetFrameworks>net8.0-windows;net9.0-windows;net48</TargetFrameworks>
5+
<TargetFramework>net9.0-windows</TargetFramework>
66
<AssemblyTitle>Xceed.Wpf.Zip.Sample</AssemblyTitle>
77
<AssemblyCompany>Logiciels Xceed</AssemblyCompany>
88
<AssemblyProduct>Xceed.Wpf.Zip.Sample</AssemblyProduct>

0 commit comments

Comments
 (0)