-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding special case for
TAGame.PRI_Breakout_TA
. Updating to use fra…
…meworks that aren't obsolete (yet). Bumped major version number, since I may have broken the world.
- Loading branch information
Showing
10 changed files
with
34 additions
and
47 deletions.
There are no files selected for viewing
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
11 changes: 6 additions & 5 deletions
11
RocketLeagueReplayParser.Tests/RocketLeagueReplayParser.Tests.csproj
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
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
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,35 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp2.0;netstandard1.3;net45</TargetFrameworks> | ||
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks> | ||
<Title>RocketLeagueReplayParser</Title> | ||
<Company>Joe Bott</Company> | ||
<Product>RocketLeagueReplayParser</Product> | ||
<Copyright>Copyright © 2015-2021</Copyright> | ||
|
||
<!--Incrementing minor for every major patch --> | ||
<Version>2.11.0</Version> | ||
<FileVersion>2.11.0</FileVersion> | ||
<PackageVersion>2.11.0</PackageVersion> | ||
<AssemblyVersion>2.11.0</AssemblyVersion> | ||
<Version>3.0.0</Version> | ||
<FileVersion>3.0.0</FileVersion> | ||
<PackageVersion>3.0.0</PackageVersion> | ||
<AssemblyVersion>3.0.0</AssemblyVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CompareNETObjects" Version="4.52.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" /> | ||
<PackageReference Include="CompareNETObjects" Version="4.76.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'"> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="System.Diagnostics.TraceSource"> | ||
<Version>4.3.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="System.Text.Encoding.CodePages"> | ||
<Version>4.5.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'"> | ||
<PackageReference Include="System.Diagnostics.TraceSource"> | ||
<Version>4.3.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="System.Text.Encoding.CodePages"> | ||
<Version>4.5.0</Version> | ||
<Version>6.0.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
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