|
6 | 6 | <Company>linq2db</Company> |
7 | 7 | <Product>linq2db.LINQPad</Product> |
8 | 8 | <AssemblyTitle>$(Product)</AssemblyTitle> |
9 | | - <Version>5.2.0.0</Version> |
| 9 | + <Version>5.2.1.0</Version> |
10 | 10 | <AssemblyVersion>$(Version)</AssemblyVersion> |
11 | 11 | <FileVersion>$(Version)</FileVersion> |
12 | 12 | <Copyright>Copyright © 2016-2024 Linq To DB Team</Copyright> |
|
42 | 42 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
43 | 43 | </PropertyGroup> |
44 | 44 |
|
| 45 | + <PropertyGroup Label="NETFX DLL HELL workaround" Condition=" '$(TargetFramework)' == 'net48' "> |
| 46 | + <MSBuildWarningsAsMessages>$(MSBuildWarningsAsMessages);MSB3277</MSBuildWarningsAsMessages> |
| 47 | + </PropertyGroup> |
| 48 | + |
45 | 49 | <ItemGroup> |
46 | 50 | <Using Include="System.Reflection" /> |
47 | 51 |
|
|
76 | 80 | <PackageReference Include="System.Runtime.CompilerServices.Unsafe" /> |
77 | 81 | <PackageReference Include="System.Memory" /> |
78 | 82 | <PackageReference Include="System.Buffers" /> |
79 | | - <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" /> |
80 | | - <PackageReference Include="System.Text.Json" /> |
| 83 | + <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" NoWarn="NU1605" /> |
| 84 | + <PackageReference Include="System.Text.Json" NoWarn="NU1605" /> |
81 | 85 | <PackageReference Include="Oracle.ManagedDataAccess" /> |
82 | 86 | <PackageReference Include="IBM.Data.DB.Provider" GeneratePathProperty="true" /> |
83 | 87 |
|
|
134 | 138 | </ItemGroup> |
135 | 139 |
|
136 | 140 | <Target Name="PostBuild1" AfterTargets="PostBuildEvent" Condition="'$(TargetFramework)' != 'net48'"> |
137 | | - <Exec Command="$(ProjectDir)..\Build\Pack.bat $(TargetDir) lpx6" /> |
| 141 | + <Exec Command="$(ProjectDir)..\Build\Pack.cmd $(TargetDir) lpx6" /> |
138 | 142 | </Target> |
139 | 143 |
|
140 | 144 | <Target Name="PostBuild2" AfterTargets="CopySQLiteInteropFiles" Condition="'$(TargetFramework)' == 'net48'"> |
141 | | - <Exec Command="$(ProjectDir)..\Build\Pack.bat $(TargetDir) lpx" /> |
| 145 | + <Exec Command="$(ProjectDir)..\Build\Pack.cmd $(TargetDir) lpx" /> |
142 | 146 | </Target> |
143 | 147 |
|
144 | 148 | <ItemGroup> |
|
0 commit comments