Skip to content

Commit ce002b0

Browse files
committed
v0.3.2
1 parent bdf624a commit ce002b0

File tree

3 files changed

+12
-24
lines changed

3 files changed

+12
-24
lines changed

Directory.Build.targets

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,16 @@
11
<Project>
2-
32
<ItemGroup>
4-
<Compile Update="**\*.Adapters.cs">
5-
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('.Adapters', '.cs'))</DependentUpon>
6-
</Compile>
7-
<Compile Update="**\*.Asserts.cs">
8-
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('.Asserts', '.cs'))</DependentUpon>
9-
</Compile>
10-
<Compile Update="**\*.AsyncLock.cs">
11-
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('.AsyncLock', '.cs'))</DependentUpon>
12-
</Compile>
13-
<Compile Update="**\*.Commands.cs">
14-
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('.Commands', '.cs'))</DependentUpon>
3+
<CsFiles Include="**\*.*.cs" Exclude="**\*.xaml.cs;**\*.axaml.cs" />
4+
</ItemGroup>
5+
<ItemGroup>
6+
<Compile Update="@(CsFiles)">
7+
<DependentUpon>$([System.Text.RegularExpressions.Regex]::Replace('%(Filename)', '\..*$', '.cs'))</DependentUpon>
158
</Compile>
16-
<Compile Update="**\*.IDbConnection.cs">
17-
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('.IDbConnection', '.cs'))</DependentUpon>
9+
<Compile Update="**\*Extensions.cs">
10+
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('Extensions', '.cs'))</DependentUpon>
1811
</Compile>
19-
<Compile Update="**\*.Transactions.cs">
20-
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('.Transactions', '.cs'))</DependentUpon>
12+
<Compile Update="**\*Factory.cs">
13+
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('Factory', '.cs'))</DependentUpon>
2114
</Compile>
2215
</ItemGroup>
23-
2416
</Project>

src/NuExt.System.Data.SQLite.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ System.Data.SQLite.SQLiteDbConnection
1414
System.Data.SQLite.SQLiteDbContext
1515
System.Data.SQLite.SQLiteDbConverter
1616
System.Data.SQLite.SQLiteDbTransaction</Description>
17-
<Version>0.3.1</Version>
17+
<Version>0.3.2</Version>
1818
<RootNamespace />
1919
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2020
<NoWarn>$(NoWarn);1591</NoWarn>
@@ -23,10 +23,6 @@ System.Data.SQLite.SQLiteDbTransaction</Description>
2323
<PackageProjectUrl>https://github.com/IvanGit/NuExt.System.Data.SQLite</PackageProjectUrl>
2424
</PropertyGroup>
2525

26-
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0' or '$(TargetFramework)' == 'net8.0' or '$(TargetFramework)' == 'net6.0'">
27-
<DefineConstants>$(DefineConstants);NET</DefineConstants>
28-
</PropertyGroup>
29-
3026
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net462'">
3127
<DefineConstants>$(DefineConstants);NET_OLD</DefineConstants>
3228
</PropertyGroup>
@@ -36,7 +32,7 @@ System.Data.SQLite.SQLiteDbTransaction</Description>
3632
</ItemGroup>
3733

3834
<ItemGroup Condition="'$(UseNuExtPackages)' == 'true'">
39-
<PackageReference Include="NuExt.System.Data" Version="0.3.1" />
35+
<PackageReference Include="NuExt.System.Data" Version="0.3.2" />
4036
</ItemGroup>
4137

4238
<ItemGroup Condition="'$(UseNuExtPackages)' == 'false'">

tests/NuExt.System.Data.SQLite.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="coverlet.collector" Version="6.0.3">
12+
<PackageReference Include="coverlet.collector" Version="6.0.4">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>

0 commit comments

Comments
 (0)