Skip to content

Commit

Permalink
Nuget 1.0.4
Browse files Browse the repository at this point in the history
Fix for inconsistent linker settings in test.
  • Loading branch information
crowbar27 committed May 14, 2020
1 parent c35f5c7 commit ede7d3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion datraw/datraw.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>This library allows for reading volumetric data sets stored in the dat/raw format, which consists of a textual description of the data format in the dat file and the raw voxel data in one or more raw files.</description>
<summary>A C++ header-only library for dat/raw volume data sets.</summary>
<releaseNotes>Fix for C++17 compatibility.</releaseNotes>
<releaseNotes>Fix for data offset not being honoured. Fix for multi-file patterns not working for wide strings.</releaseNotes>
<copyright>Copyright © 2018 - 2020 Visualisierungsinstitut der Universität Stuttgart</copyright>
<tags>native datraw dat raw volume volumetric</tags>
</metadata>
Expand Down
10 changes: 2 additions & 8 deletions test/test.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -74,21 +74,15 @@
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>true</LinkIncremental>
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>Use</PrecompiledHeader>
Expand Down

0 comments on commit ede7d3e

Please sign in to comment.