Skip to content

Commit 7b1e7eb

Browse files
committed
v0.3.2
1 parent d256495 commit 7b1e7eb

3 files changed

Lines changed: 9 additions & 15 deletions

File tree

Directory.Build.targets

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
<Project>
2-
32
<ItemGroup>
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>
8+
</Compile>
49
<Compile Update="**\*Extensions.cs">
510
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('Extensions', '.cs'))</DependentUpon>
611
</Compile>
7-
<Compile Update="**\*.FwStd20.cs">
8-
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('.FwStd20', '.cs'))</DependentUpon>
9-
</Compile>
10-
<Compile Update="**\*.Nullable.cs">
11-
<DependentUpon>$([System.String]::Copy('%(Filename)').Replace('.Nullable', '.cs'))</DependentUpon>
12-
</Compile>
1312
</ItemGroup>
14-
1513
</Project>

src/NuExt.System.Data.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,21 @@ System.Data.DataTableExtensions
1616
System.Data.DalBase
1717
System.Data.DbConverter&lt;TDbConnection&gt;
1818
System.Data.IDbContext</Description>
19-
<Version>0.3.1</Version>
19+
<Version>0.3.2</Version>
2020
<RootNamespace />
2121
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2222
<NoWarn>$(NoWarn);1591</NoWarn>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
2424
<PackageIcon>logo128.png</PackageIcon>
2525
<PackageProjectUrl>https://github.com/IvanGit/NuExt.System.Data</PackageProjectUrl>
2626
</PropertyGroup>
27-
28-
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0' or '$(TargetFramework)' == 'net8.0' or '$(TargetFramework)' == 'net6.0'">
29-
<DefineConstants>$(DefineConstants);NET</DefineConstants>
30-
</PropertyGroup>
3127

3228
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net462'">
3329
<DefineConstants>$(DefineConstants);NET_OLD</DefineConstants>
3430
</PropertyGroup>
3531

3632
<ItemGroup Condition="'$(UseNuExtPackages)' == 'true'">
37-
<PackageReference Include="NuExt.System" Version="0.3.1" />
33+
<PackageReference Include="NuExt.System" Version="0.3.2" />
3834
</ItemGroup>
3935

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

tests/NuExt.System.Data.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)