Skip to content

Commit

Permalink
Unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FolkerKinzel committed Mar 31, 2021
1 parent e8dd088 commit 0f40812
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,11 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="echo $(ProjectDir)" />
<Target Name="PreBuild" BeforeTargets="PreBuildEvent" Condition="'$(TargetFramework)' == 'net5.0'">
<Exec Command="@echo Project Directory: $(ProjectDir)" />
</Target>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(TargetFramework)' == 'net5.0'">
<Exec Command="echo $(ProjectDir) &gt; &quot;$(ProjectDir)\Resources\ProjDir.txt&quot;" />
</Target>

</Project>
2 changes: 1 addition & 1 deletion FolkerKinzel.CsvTools/FolkerKinzel.CsvTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<Version>1.5.0</Version>
<FileVersion>1.5.0.32</FileVersion>
<FileVersion>1.5.0.36</FileVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<PackageReleaseNotes>Adds a .NET 5.0 dll to the package.

Expand Down

0 comments on commit 0f40812

Please sign in to comment.