-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathBaseDatabaseTest.csproj
More file actions
70 lines (62 loc) · 2.97 KB
/
BaseDatabaseTest.csproj
File metadata and controls
70 lines (62 loc) · 2.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>9.0.0</VersionPrefix>
<VersionSuffix>alpha.1</VersionSuffix>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net471;netstandard2.0;netstandard2.1</TargetFrameworks>
<PackageId>CognizantSoftvision.Maqs.Database</PackageId>
<AssemblyName>CognizantSoftvision.Maqs.BaseDatabaseTest</AssemblyName>
<RootNamespace>CognizantSoftvision.Maqs.BaseDatabaseTest</RootNamespace>
<ApplicationIcon>MAQS.ico</ApplicationIcon>
<Title>Database Module</Title>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>CognizantSoftvision</Authors>
<Description>Database extension for Cognizant Softvision's modular automation quick start</Description>
<Copyright>Copyright © Cognizant $([System.DateTime]::Now.Year)</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>MAQS.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/CognizantOpenSource/maqs-dotnet/main/Framework/MAQS.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/CognizantOpenSource/maqs-dotnet</PackageProjectUrl>
<PackageTags>test SQL database automation NUnit MSTest TestFramework</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<RepositoryUrl>https://github.com/CognizantOpenSource/maqs-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>
Release Notes can be found at https://github.com/CognizantOpenSource/maqs-dotnet/releases
</PackageReleaseNotes>
<DebugSymbols>true</DebugSymbols>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<SonarQubeTestProject>false</SonarQubeTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.123" />
<PackageReference Include="Dapper.Contrib" Version="2.0.78" />
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="6.0.9" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql" Version="6.0.7" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.5" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.3" />
</ItemGroup>
<ItemGroup>
<None Include="..\MAQS.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BaseTest\BaseTest.csproj" />
</ItemGroup>
</Project>