Skip to content

Commit a759717

Browse files
author
openize-cells
committed
Fix Repo links
1 parent b2c2c67 commit a759717

21 files changed

+617
-30
lines changed

.DS_Store

0 Bytes
Binary file not shown.

FileFormat.Cells/Program.cs

Lines changed: 0 additions & 1 deletion
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

FileFormat.Cells.sln renamed to Openize.Cells.sln

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.9.34607.119
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileFormat.Cells", "FileFormat.Cells\FileFormat.Cells.csproj", "{347E8540-1317-4E99-BF8A-A16A04E753BB}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Openize.Cells", "Openize.Cells\Openize.Cells.csproj", "{347E8540-1317-4E99-BF8A-A16A04E753BB}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileFormat.Cells_Tests", "FileFormat.Cells_Tests\FileFormat.Cells_Tests.csproj", "{A9BFD275-A6CD-4CD7-B039-8CB29CDE5C93}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Openize.Cells_Tests", "Openize.Cells_Tests\Openize.Cells_Tests.csproj", "{A9BFD275-A6CD-4CD7-B039-8CB29CDE5C93}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution

FileFormat.Cells/BuiltInDocumentProperties.cs renamed to Openize.Cells/BuiltInDocumentProperties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System;
2-
namespace FileFormat.Cells
2+
namespace Openize.Cells
33
{
44
public class BuiltInDocumentProperties
55
{

FileFormat.Cells/Cell.cs renamed to Openize.Cells/Cell.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using DocumentFormat.OpenXml.Spreadsheet;
55
using DocumentFormat.OpenXml.Packaging;
66

7-
namespace FileFormat.Cells
7+
namespace Openize.Cells
88
{
99
public sealed class Cell
1010
{

FileFormat.Cells/Comment.cs renamed to Openize.Cells/Comment.cs

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

7-
namespace FileFormat.Cells
7+
namespace Openize.Cells
88
{
99
public class Comment
1010
{

FileFormat.Cells/Image.cs renamed to Openize.Cells/Image.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.IO;
1010
using System;
1111

12-
namespace FileFormat.Cells
12+
namespace Openize.Cells
1313
{
1414

1515
/// <summary>

FileFormat.Cells/ImageHandler.cs renamed to Openize.Cells/ImageHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using System;
1111
using System.IO;
1212

13-
namespace FileFormat.Cells
13+
namespace Openize.Cells
1414
{
1515
public class ImageHandler
1616
{

0 commit comments

Comments
 (0)