-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed some Properties since they are redundant
- Loading branch information
Showing
9 changed files
with
542 additions
and
48 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
src/BUTR.CrashReport.Bannerlord.Parser/BUTR.CrashReport.Bannerlord.Parser.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<IsPackable>true</IsPackable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<ILRepackTargetConfigurations>Debug;Release</ILRepackTargetConfigurations> | ||
<ILRepackAllowDuplicateResources>false</ILRepackAllowDuplicateResources> | ||
<ILRepackMergeDebugSymbols>true</ILRepackMergeDebugSymbols> | ||
<ILRepackPerformInternalize>true</ILRepackPerformInternalize> | ||
<ILRepackCopyAttributes>false</ILRepackCopyAttributes> | ||
<ILRepackBuildToolingPath>$(PkgBUTR_ILRepack)\tools\net461\ILRepack.exe</ILRepackBuildToolingPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="ILRepack" Version="2.0.18" PrivateAssets="all" IncludeAssets="none" /> | ||
<PackageReference Include="BUTR.ILRepack" Version="2.1.9-beta7" GeneratePathProperty="true" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> | ||
<PackageReference Include="ILRepack.FullAuto" Version="1.2.0" PrivateAssets="all" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>BUTR.CrashReport.Bannerlord.Parser</PackageId> | ||
<Title>BUTR.CrashReport.Bannerlord.Parser</Title> | ||
<Description>Contains the models for parsing the crash report</Description> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIconUrl>https://raw.githubusercontent.com/BUTR/BUTR.CrashReport/master/assets/Icon128x128.png</PackageIconUrl> | ||
<PackageTags>butr crash report bannerlord</PackageTags> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="HtmlAgilityPack" Version="1.11.53" /> | ||
<PackageReference Include="Polyfill" Version="1.28.0" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> | ||
<PackageReference Include="System.Collections.Immutable" Version="7.0.0" /> | ||
<PackageReference Include="System.Memory" Version="4.5.5" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\BUTR.CrashReport\BUTR.CrashReport.csproj" /> | ||
</ItemGroup> | ||
|
||
<Target Name="ExcludeAssembliesFromILRepack" BeforeTargets="ILRepackPrepare"> | ||
<PropertyGroup> | ||
<ILRepackExcludeAssemblies>$(ILRepackExcludeAssemblies);$(ProjectDir)$(OutputPath)BUTR.CrashReport.dll;</ILRepackExcludeAssemblies> | ||
</PropertyGroup> | ||
</Target> | ||
|
||
|
||
</Project> |
434 changes: 434 additions & 0 deletions
434
src/BUTR.CrashReport.Bannerlord.Parser/CrashReportParser.cs
Large diffs are not rendered by default.
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
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 |
---|---|---|
|
@@ -4,4 +4,5 @@ public enum ModuleDependencyMetadataModelType | |
{ | ||
LoadBefore = 1, | ||
LoadAfter = 2, | ||
Incompatible = 3, | ||
} |