Skip to content

Commit c4ea869

Browse files
authored
Merge pull request #13 from fahadadeel/main
Add New Row and Column Manipulation Features to FileFormat.Cells
2 parents 7d4287b + 15eba2b commit c4ea869

File tree

5 files changed

+1339
-402
lines changed

5 files changed

+1339
-402
lines changed

FileFormat.Cells/Comment.cs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace FileFormat.Cells
8+
{
9+
public class Comment
10+
{
11+
public string Author { get; set; }
12+
public string Text { get; set; }
13+
14+
public Comment(string author, string text)
15+
{
16+
Author = author;
17+
Text = text;
18+
}
19+
}
20+
}

FileFormat.Cells/FileFormat.Cells.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
<LangVersion>10.0</LangVersion>
67
<ImplicitUsings>enable</ImplicitUsings>
78
<Nullable>enable</Nullable>
89
</PropertyGroup>

0 commit comments

Comments
 (0)