Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamxgn committed Mar 28, 2019
0 parents commit 6c12fc6
Show file tree
Hide file tree
Showing 23 changed files with 698 additions and 0 deletions.
31 changes: 31 additions & 0 deletions ExcelAssit.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2027
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExcelAssit", "ExcelAssit\ExcelAssit.csproj", "{A509F11E-6F66-42E7-A071-F3EDE43A7C6B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{AB123E99-BF51-4CCB-8A3E-850BFB37E84F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A509F11E-6F66-42E7-A071-F3EDE43A7C6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A509F11E-6F66-42E7-A071-F3EDE43A7C6B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A509F11E-6F66-42E7-A071-F3EDE43A7C6B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A509F11E-6F66-42E7-A071-F3EDE43A7C6B}.Release|Any CPU.Build.0 = Release|Any CPU
{AB123E99-BF51-4CCB-8A3E-850BFB37E84F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AB123E99-BF51-4CCB-8A3E-850BFB37E84F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AB123E99-BF51-4CCB-8A3E-850BFB37E84F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AB123E99-BF51-4CCB-8A3E-850BFB37E84F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {ECB2A4EA-63F5-4FB7-B880-26ED7F7418EA}
EndGlobalSection
EndGlobal
25 changes: 25 additions & 0 deletions ExcelAssit/AssitCellAttribute.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ExcelAssit
{
public class AssitCellAttribute:Attribute
{
public string CellTitle { get; set; }
public CellType CellType { get; set; }
}

public enum CellType
{
String,
Int,
Float,
Image,
DateTime
}


}
Loading

0 comments on commit 6c12fc6

Please sign in to comment.