-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEasyExcelFramework.csproj
More file actions
46 lines (43 loc) · 2.19 KB
/
EasyExcelFramework.csproj
File metadata and controls
46 lines (43 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<StartupObject>AutoGeneratedProgram</StartupObject>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Easy Excel Framework</Title>
<Authors>Ian Holdsworth</Authors>
<Description>An Excel based keyword test framework</Description>
<Copyright>Ian Holdsworth 2022</Copyright>
<PackageProjectUrl>https://github.com/BigIan1969/EasyExcelFrameworkCore</PackageProjectUrl>
<RepositoryUrl>https://github.com/BigIan1969/EasyExcelFrameworkCore</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>Testing Framework TestAutomation</PackageTags>
<PackageReleaseNotes>First Release</PackageReleaseNotes>
<AssemblyName>EasyExcelFramework</AssemblyName>
<RootNamespace>EasyExcelFramework</RootNamespace>
<PackageId>EasyExcelFramework(Core)</PackageId>
<Version>0.0.1</Version>
<Company>Ian Holdsworth</Company>
<Product>EasyExcelFramework(Core)</Product>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Crayon" Version="2.0.69" />
<PackageReference Include="DynamicExpresso.Core" Version="2.16.1" />
<PackageReference Include="ExcelDataReader" Version="3.7.0" />
<PackageReference Include="ExcelDataReader.DataSet" Version="3.7.0" />
<PackageReference Include="Microsoft.CodeCoverage" Version="17.10.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
<PackageReference Include="NuGet.CommandLine" Version="6.10.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>