New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added TxtCsvHelper #32
Conversation
NCsvPerf.Test/NCsvPerf.Test.csproj
Outdated
@@ -8,6 +8,7 @@ | |||
|
|||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" /> | |||
<PackageReference Include="TxtCsvHelper" Version="1.2.8" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed since this reference will come in transitively from NCsvPerf.csproj.
I'm sorry, how do I include that then?
Sorry to be such a pain, like I said I'm fully self taught and I have
little experience with Github and unit testing
…On Thu, Jul 1, 2021 at 12:43 PM Joel Verhagen ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In NCsvPerf.Test/NCsvPerf.Test.csproj
<#32 (comment)>:
> @@ -8,6 +8,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
+ <PackageReference Include="TxtCsvHelper" Version="1.2.8" />
This is not needed since this reference will come in transitively from
NCsvPerf.csproj.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#32 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQ7PX56ZV6R4XR2VSWPZ4ZTTVTAO3ANCNFSM47VJHBJA>
.
|
No problem :). Because the NCsvPerf.Test.csproj project file references the NCsvPerf.csproj project with a project reference, all of the package references in the latter will automatically flow in to the test project. This is why you don't see any other lines in NCsvPerf.Test.csproj for the other CSV parsing libraries that are being tested. You can simply delete that line that I commented on and run |
Okay, it should be fixed now!
…On Thu, Jul 1, 2021 at 7:22 PM Joel Verhagen ***@***.***> wrote:
I'm sorry, how do I include that then? Sorry to be such a pain, like I
said I'm fully self taught and I have little experience with Github and
unit testing
No problem :). Because the NCsvPerf.Test.csproj project file references
the NCsvPerf.csproj project with a project reference, all of the package
references in the latter will automatically flow in to the test project.
This is why you don't see any other lines in NCsvPerf.Test.csproj for the
other CSV parsing libraries that are being tested. You can simply delete
that line that I commented on and run dotnet build again to see that it
still works.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#32 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQ7PX53RF3UR4H5EMZJCNTDTVUPGHANCNFSM47VJHBJA>
.
|
Thanks Cameron! |
added new nuget package