|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | | - <TargetFrameworks>netstandard2.0;net40;net48;net6.0</TargetFrameworks> |
| 3 | + <TargetFrameworks>netstandard2.0;netstandard2.1;net40;net48</TargetFrameworks> |
4 | 4 | <title>CQRS.NET</title> |
5 | 5 | <Authors>Chinchilla Software</Authors> |
6 | 6 | <Company>Chinchilla Software</Company> |
|
126 | 126 |
|
127 | 127 | <PropertyGroup> |
128 | 128 | <OutputType>library</OutputType> |
129 | | - <TargetFrameworks>net40;netstandard2.0;net48;net6.0</TargetFrameworks> |
| 129 | + <TargetFrameworks>net40;netstandard2.0;netstandard2.1;net48</TargetFrameworks> |
130 | 130 | <DocumentationFile>Cqrs.xml</DocumentationFile> |
131 | 131 | <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
132 | 132 | <TreatWarningsAsErrors>True</TreatWarningsAsErrors> |
133 | 133 | </PropertyGroup> |
134 | 134 |
|
135 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> |
136 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.32" /> |
137 | | - <!-- |
| 135 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1' "> |
| 136 | + <PackageReference Include="Azure.Identity" Version="1.13.1" /> |
| 137 | + <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.32" /> |
| 138 | + <!-- |
138 | 139 | <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.2.6"> |
139 | 140 | <PrivateAssets>all</PrivateAssets> |
140 | 141 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
141 | 142 | </PackageReference> |
142 | 143 | --> |
143 | | - </ItemGroup> |
144 | | - |
145 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> |
146 | | - <PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" /> |
147 | | - <PackageReference Include="System.ServiceModel.Primitives" Version="8.1.1" /> |
148 | | - <PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> |
149 | | - </ItemGroup> |
150 | | - |
151 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' "> |
152 | 144 | <PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" /> |
153 | 145 | <PackageReference Include="System.ServiceModel.Primitives" Version="8.1.1" /> |
| 146 | + <PackageReference Include="Microsoft.Extensions.DependencyModel" Version="6.0.0" /> |
154 | 147 | </ItemGroup> |
155 | | - |
156 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> |
157 | | - <PackageReference Include="Microsoft.Extensions.DependencyModel" Version="6.0.0" /> |
| 148 | + |
| 149 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> |
| 150 | + <PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> |
158 | 151 | </ItemGroup> |
159 | 152 |
|
160 | 153 | <ItemGroup Condition=" '$(TargetFramework)' == 'net40' OR '$(TargetFramework)' == 'net48' "> |
|
187 | 180 | <None Remove="tools\Create-Log-Table.sql" /> |
188 | 181 | </ItemGroup> |
189 | 182 |
|
190 | | - <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
191 | | - <PackageReference Include="Azure.Identity"> |
192 | | - <Version>1.13.1</Version> |
193 | | - </PackageReference> |
194 | | - </ItemGroup> |
195 | | - |
196 | 183 | <ItemGroup Condition="'$(TargetFramework)' == 'net48'"> |
197 | 184 | <PackageReference Include="Azure.Identity"> |
198 | 185 | <Version>1.13.1</Version> |
|
0 commit comments