-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge pull request #245 from jamespfluger-ava/feat/dotnet-6-a…
- Loading branch information
Jonathan Wenger
committed
Aug 10, 2024
1 parent
0b3af12
commit 653ce6a
Showing
22 changed files
with
97 additions
and
2,597 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,88 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net451;net45;net461;net472;netcoreapp2.2.8;netcoreapp3.1;net6.0;net8.0</TargetFrameworks> | ||
<TargetFrameworks>net451;net45;net461;net472;netcoreapp2.2;netcoreapp3.1</TargetFrameworks> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'net451'"> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'net45'"> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'"> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'net472'"> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.2'"> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'"> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageReference Include="Nunit" Version="3.13.3" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" /> | ||
<PackageReference Include="System.Net.Http" Version="4.3.4" /> | ||
<Compile Remove="**\*.*" /> | ||
<None Remove="**" /> | ||
</ItemGroup> | ||
|
||
|
||
<!-- .NET Framework 4.5.1 --> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net451'"> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" /> | ||
<PackageReference Include="Nunit" Version="3.13.3" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Compile Include="net20\*.cs" /> | ||
<ProjectReference Include="..\src\Avalara.AvaTax.RestClient.csproj"> | ||
<SetTargetFramework>TargetFramework=net20</SetTargetFramework> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<!-- .NET Framework 4.5 --> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net45'"> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" /> | ||
<PackageReference Include="Nunit" Version="3.13.3" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Compile Include="net45\*.cs" /> | ||
<ProjectReference Include="..\src\Avalara.AvaTax.RestClient.csproj"> | ||
<SetTargetFramework>TargetFramework=net45</SetTargetFramework> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<!-- .NET Framework 4.6.1 --> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net461'"> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" /> | ||
<PackageReference Include="Nunit" Version="3.13.3" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Compile Include="net461\*.cs" /> | ||
<ProjectReference Include="..\src\Avalara.AvaTax.RestClient.csproj"> | ||
<SetTargetFramework>TargetFramework=net461</SetTargetFramework> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<!-- .NET Framework 4.7.2 --> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net472'"> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="System.Net.Http" Version="4.3.2" /> | ||
<PackageReference Include="Nunit" Version="3.13.3" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" /> | ||
<Compile Include="net472\*.cs" /> | ||
<ProjectReference Include="..\src\Avalara.AvaTax.RestClient.csproj"> | ||
<SetTargetFramework>TargetFramework=net472</SetTargetFramework> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<!-- .NET Core 2.2.8 --> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.2.8'"> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.2'"> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="NUnit" Version="3.12.0" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" /> | ||
<PackageReference Include="System.Net.Http" Version="4.3.2" /> | ||
<Compile Include="netstandard\*.cs" /> | ||
<ProjectReference Include="..\src\Avalara.AvaTax.RestClient.csproj"> | ||
<SetTargetFramework>TargetFramework=netstandard1.6</SetTargetFramework> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<!-- .NET Core 3.1 --> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'"> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="Nunit" Version="3.13.3" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" /> | ||
<PackageReference Include="System.Net.Http" Version="4.3.2" /> | ||
<Compile Include="netstandard20\*.cs" /> | ||
<ProjectReference Include="..\src\Avalara.AvaTax.RestClient.csproj"> | ||
<SetTargetFramework>TargetFramework=netstandard2.0</SetTargetFramework> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<!-- .NET 6.0 --> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> | ||
<Compile Include="net6.0\*.cs" /> | ||
<ProjectReference Include="..\src\Avalara.AvaTax.RestClient.csproj"> | ||
<SetTargetFramework>TargetFramework=net6.0</SetTargetFramework> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<!-- .NET 8.0 --> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||
<Compile Include="net6.0\*.cs" /> | ||
<ProjectReference Include="..\src\Avalara.AvaTax.RestClient.csproj"> | ||
<SetTargetFramework>TargetFramework=net6.0</SetTargetFramework> | ||
</ProjectReference> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.