Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
*.user
bin
obj
packages
packages
/.vs/IntelHexFormatReader/v16/TestStore/0
/.vs
7 changes: 5 additions & 2 deletions Source/IntelHexFormatReader.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26228.4
# Visual Studio Version 16
VisualStudioVersion = 16.0.31613.86
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntelHexFormatReader", "IntelHexFormatReader\IntelHexFormatReader.csproj", "{B08B7C2E-81CD-4033-9F80-26AEAAEB140E}"
EndProject
Expand Down Expand Up @@ -45,4 +45,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1E6475AD-451F-44F4-B259-F5F75ECF004F}
EndGlobalSection
EndGlobal
4 changes: 2 additions & 2 deletions Source/IntelHexFormatReader/IntelHexFormatReader.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>IntelHexFormatReader</Title>
<TargetFrameworks>netstandard1.6;net45;net46</TargetFrameworks>
<TargetFrameworks>net45;net46;net5.0</TargetFrameworks>
<Authors>Christophe Diericx</Authors>
<Company />
<Description>A .NET library to parse an Intel HEX file and emit a representative memory representation.</Description>
<PackageProjectUrl>https://github.com/christophediericx/IntelHexFormatReader</PackageProjectUrl>
<PackageIconUrl>https://avatars3.githubusercontent.com/u/19640854?s=140</PackageIconUrl>
<Version>2.2.3</Version>
<Version>2.3.0</Version>
<PackageTags>intel hex memory</PackageTags>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp1.1;net45;net46</TargetFrameworks>
<TargetFrameworks>net45;net46;net5.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\IntelHexFormatReader\IntelHexFormatReader.csproj" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20170106-08" />
<PackageReference Include="MSTest.TestAdapter" Version="1.1.8-rc" />
<PackageReference Include="MSTest.TestFramework" Version="1.0.8-rc" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.6" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.6" />
<PackageReference Include="FluentAssertions" Version="4.19.2" />
</ItemGroup>
<ItemGroup>
Expand Down