Skip to content

Commit ff673c2

Browse files
changing xxxyyyy by LICENSE_KEY_PLACEHOLDER
1 parent 4e85bda commit ff673c2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Xceed.Blazor.Words.Sample.Services;
55

66
// Replace the License Key by a valid license.
7-
Xceed.Words.NET.Licenser.LicenseKey = "XXXXX-XXXXX-XXXXX-YYYY";
7+
Xceed.Words.NET.Licenser.LicenseKey = "LICENSE_KEY_PLACEHOLDER";
88

99
var builder = WebAssemblyHostBuilder.CreateDefault( args );
1010
builder.RootComponents.Add<App>( "#app" );

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

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

55
// Replace the License Key by a valid license.
6-
Xceed.Words.NET.Licenser.LicenseKey = "XXXXX-XXXXX-XXXXX-YYYY";
6+
Xceed.Words.NET.Licenser.LicenseKey = "LICENSE_KEY_PLACEHOLDER";
77
Console.Title = "Xceed Words.NET Sample";
88
bool isopened = false;
99
while( true )

Src/SamplesByPlatforms/Xceed.WinForm.Words.Sample/Form1.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ public partial class Form1 : Form
1010
public Form1()
1111
{
1212
InitializeComponent();
13-
// Replace the License Key by a valid license.
14-
Xceed.Words.NET.Licenser.LicenseKey = "XXXXX-XXXXX-XXXXX-YYYY";
15-
}
13+
// Replace the License Key by a valid license.
14+
Xceed.Words.NET.Licenser.LicenseKey = "LICENSE_KEY_PLACEHOLDER";
15+
}
1616

17-
private void button1_Click( object sender, EventArgs e )
17+
private void button1_Click( object sender, EventArgs e )
1818
{
1919
SaveFileDialog saveFileDialog = new SaveFileDialog();
2020
saveFileDialog.Filter = "Word Document|*.docx";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public MainWindow()
1010
{
1111
InitializeComponent();
1212
// Replace the License Key by a valid license.
13-
Xceed.Words.NET.Licenser.LicenseKey = "XXXXX-XXXXX-XXXXX-YYYY";
13+
Xceed.Words.NET.Licenser.LicenseKey = "LICENSE_KEY_PLACEHOLDER";
1414
}
1515

1616
private void btnGenerateSimpleDoc_Click( object sender, RoutedEventArgs e )

0 commit comments

Comments
 (0)