-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
53 lines (45 loc) · 2.42 KB
/
Directory.Build.props
File metadata and controls
53 lines (45 loc) · 2.42 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
<Project>
<!-- Imports the parent Directory.Build.props if exist -->
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<PropertyGroup>
<Nullable>enable</Nullable>
<PackageIcon>Icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/PosInformatique/PosInformatique.Testing.Databases</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>
2.2.0
- Add SqlServerDatabase.ClearDataAsync() method.
- Add SqlServer.CreateDatabase() method to create database from an Entity Framework DbContext.
- Add SqlServer.CreateEmptyDatabaseAsync() method.
- Add SqlServer.DeleteDatabaseAsync() method.
- Add SqlServerDatabase.ExecuteScriptAsync() method.
- Add SqlServerDatabase.InsertIntoAsync() method.
2.1.0
- PosInformatique.Testing.Databases.SqlServer target the .NET Standard 2.0 platform.
- PosInformatique.Testing.Databases.SqlServer.Dac target the .NET Core 6.0 and .NET Framework 4.6.2
- PosInformatique.Testing.Databases.SqlServer.EntityFramework target the .NET Core 6.0
- Reduce the dependencies to Entity Framework 6.0
- Reduce the dependencies of DACfx to a more earlier version.
- Add new method SqlServerDatabase.ExecuteScript() to execute T-SQL scripts.
2.0.0
- Add SqlServerDatabaseComparer class to perform comparison between two databases.
- Add new PosInformatique.Testing.Databases.SqlServer.Dac NuGet package which contains DAC package tools.
- Add new SqlServer.CreateDatabaseAsync() extension method to create a database from a DbContext.
- Reduce dependencies version of the Entity Framework Core and SQL Server Client NuGet packages.
1.0.1
- Fix the documentation
1.0.0
- Initial version
</PackageReleaseNotes>
</PropertyGroup>
<!-- Add the InternalsVisibleToAttribute for the tests -->
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>$(AssemblyName).Tests</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>DynamicProxyGenAssembly2</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>