Skip to content

Commit fb1d1d0

Browse files
authored
chore: replace "GSoft" occurrences for "Workleap", when applicable (#26)
1 parent 3e4f5e9 commit fb1d1d0

38 files changed

+106
-106
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# GSoft.ComponentModel.DataAnnotations
1+
# Workleap.ComponentModel.DataAnnotations
22

33
Provides multiple new data annotation attributes, such as `[Guid]`, `[NotEmpty]`, `[ValidateProperties]`.
44

5-
[![nuget](https://img.shields.io/nuget/v/GSoft.ComponentModel.DataAnnotations.svg?logo=nuget)](https://www.nuget.org/packages/GSoft.ComponentModel.DataAnnotations/)
6-
[![build](https://img.shields.io/github/actions/workflow/status/gsoft-inc/gsoft-componentmodel-dataannotations/publish.yml?logo=github)](https://github.com/gsoft-inc/gsoft-componentmodel-dataannotations/actions/workflows/publish.yml)
5+
[![nuget](https://img.shields.io/nuget/v/Workleap.ComponentModel.DataAnnotations.svg?logo=nuget)](https://www.nuget.org/packages/Workleap.ComponentModel.DataAnnotations/)
6+
[![build](https://img.shields.io/github/actions/workflow/status/gsoft-inc/wl-componentmodel-dataannotations/publish.yml?logo=github)](https://github.com/gsoft-inc/wl-componentmodel-dataannotations/actions/workflows/publish.yml)
77

88

99
## Getting started
1010

1111
```
12-
dotnet add package GSoft.ComponentModel.DataAnnotations
12+
dotnet add package Workleap.ComponentModel.DataAnnotations
1313
```
1414

1515
Decorate your properties, fields and method parameters with these new data annotation attributes.
@@ -38,4 +38,4 @@ The most useful validation attribute here is probably `ValidatePropertiesAttribu
3838

3939
## License
4040

41-
Copyright © 2022, GSoft Group Inc. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.
41+
Copyright © 2022, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Security Policy
22

3-
If you'd like to report a vulnerability, please open a [GitHub issue](https://github.com/gsoft-inc/gsoft-componentmodel-dataannotations/issues).
3+
If you'd like to report a vulnerability, please open a [GitHub issue](https://github.com/gsoft-inc/wl-componentmodel-dataannotations/issues).

src/Directory.Build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project>
22
<PropertyGroup>
3-
<Copyright>Copyright © GSoft Group Inc. $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
4-
<Authors>GSoft Group Inc.</Authors>
5-
<Owners>GSoft Group Inc.</Owners>
6-
<PackageProjectUrl>https://github.com/gsoft-inc/gsoft-componentmodel-dataannotations</PackageProjectUrl>
3+
<Copyright>Copyright © Workleap. $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
4+
<Authors>Workleap</Authors>
5+
<Owners>Workleap</Owners>
6+
<PackageProjectUrl>https://github.com/gsoft-inc/wl-componentmodel-dataannotations</PackageProjectUrl>
77
<PublishRepositoryUrl>true</PublishRepositoryUrl>
88
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
99
<LangVersion>10</LangVersion>

src/GSoft.ComponentModel.DataAnnotations/PublicAPI.Shipped.txt

Lines changed: 0 additions & 60 deletions
This file was deleted.

src/GSoft.ComponentModel.DataAnnotations.Tests/ContainsAttributeTests.cs renamed to src/Workleap.ComponentModel.DataAnnotations.Tests/ContainsAttributeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace GSoft.ComponentModel.DataAnnotations.Tests;
1+
namespace Workleap.ComponentModel.DataAnnotations.Tests;
22

33
public class ContainsAttributeTests
44
{

src/GSoft.ComponentModel.DataAnnotations.Tests/EndsWithAttributeTests.cs renamed to src/Workleap.ComponentModel.DataAnnotations.Tests/EndsWithAttributeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace GSoft.ComponentModel.DataAnnotations.Tests;
1+
namespace Workleap.ComponentModel.DataAnnotations.Tests;
22

33
public class EndsWithAttributeTests
44
{

src/GSoft.ComponentModel.DataAnnotations.Tests/GuidAttributeTests.cs renamed to src/Workleap.ComponentModel.DataAnnotations.Tests/GuidAttributeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.Linq;
55

6-
namespace GSoft.ComponentModel.DataAnnotations.Tests;
6+
namespace Workleap.ComponentModel.DataAnnotations.Tests;
77

88
public class GuidAttributeTests
99
{

src/GSoft.ComponentModel.DataAnnotations.Tests/MaxValueAttributeTests.cs renamed to src/Workleap.ComponentModel.DataAnnotations.Tests/MaxValueAttributeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace GSoft.ComponentModel.DataAnnotations.Tests;
1+
namespace Workleap.ComponentModel.DataAnnotations.Tests;
22

33
public class MaxValueAttributeTests
44
{

src/GSoft.ComponentModel.DataAnnotations.Tests/MinValueAttributeTests.cs renamed to src/Workleap.ComponentModel.DataAnnotations.Tests/MinValueAttributeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace GSoft.ComponentModel.DataAnnotations.Tests;
1+
namespace Workleap.ComponentModel.DataAnnotations.Tests;
22

33
public class MinValueAttributeTests
44
{

src/GSoft.ComponentModel.DataAnnotations.Tests/NotEmptyAttributeTests.cs renamed to src/Workleap.ComponentModel.DataAnnotations.Tests/NotEmptyAttributeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.ComponentModel.DataAnnotations;
55
using System.Globalization;
66

7-
namespace GSoft.ComponentModel.DataAnnotations.Tests;
7+
namespace Workleap.ComponentModel.DataAnnotations.Tests;
88

99
public sealed class NotEmptyAttributeTests
1010
{

0 commit comments

Comments
 (0)