Skip to content

Commit

Permalink
increment version info
Browse files Browse the repository at this point in the history
  • Loading branch information
rcd committed Jun 20, 2014
1 parent 9d18214 commit 296efc9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
@@ -1,3 +1,8 @@
#### v1.0.38 (6/20/2014)
* Fix OW swap for single byte images
* Better handling of long duration and aborted connections
* Many imported extensions and bug fixes!

#### v1.0.37 (2/19/2014)
* Add DICOM Compare tool to project
* Add support for disabling TCP Nagle algorithm
Expand Down
8 changes: 4 additions & 4 deletions SharedAssemblyInfo.cs
Expand Up @@ -5,11 +5,11 @@
#endif

[assembly: AssemblyCompanyAttribute("Fellow Oak")]
[assembly: AssemblyProductAttribute("DICOM for .NET")]
[assembly: AssemblyProductAttribute("Fellow Oak DICOM for .NET")]
[assembly: AssemblyCopyrightAttribute("Copyright © Fellow Oak, Inc. 2012-2014")]
[assembly: AssemblyTrademarkAttribute("")]
[assembly: AssemblyCultureAttribute("")]

[assembly: AssemblyVersionAttribute("1.0.37.0")]
[assembly: AssemblyFileVersion("1.0.37.0")]
[assembly: AssemblyInformationalVersionAttribute("1.0.37")]
[assembly: AssemblyVersionAttribute("1.0.38.0")]
[assembly: AssemblyFileVersion("1.0.38.0")]
[assembly: AssemblyInformationalVersionAttribute("1.0.3")]
10 changes: 5 additions & 5 deletions fo-dicom.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>fo-dicom</id>
<version>1.0.37</version>
<version>1.0.38</version>
<title>Fellow Oak DICOM for .NET</title>
<authors>Colby Dillion</authors>
<licenseUrl>http://opensource.org/licenses/MS-PL</licenseUrl>
Expand All @@ -11,17 +11,17 @@
<description>A DICOM library for .NET</description>
<language>en-US</language>
<dependencies>
<dependency id="NLog" version="2.1.0" />
<dependency id="NLog" version="3.0.0" />
</dependencies>
</metadata>
<files>
<file src="DICOM [Native]\Release\Dicom.Native.dll" target="build\net40\Dicom.Native.dll" />
<file src="DICOM [Native]\Release\Dicom.Native64.dll" target="build\net40\Dicom.Native64.dll" />
<file src="fo-dicom.targets" target="build\fo-dicom.targets" />
<file src="ChangeLog.md" target="content\ChangeLog.md" />
<file src="License.txt" target="content\License.txt" />
<file src="README.md" target="content\README.md" />
<file src="fo-dicom.targets" target="build\fo-dicom.targets" />
<file src="DICOM\bin\Release\Dicom.dll" target="lib\net40\Dicom.dll" />
<file src="DICOM [Native]\Release\Dicom.Native.dll" target="build\lib\net40\Dicom.Native.dll" />
<file src="DICOM [Native]\Release\Dicom.Native64.dll" target="build\lib\net40\Dicom.Native64.dll" />
<file src="DICOM\bin\Release\Dicom.pdb" target="lib\net40\Dicom.pdb" />
<file src="DICOM\bin\Release\Dicom.xml" target="lib\net40\Dicom.xml" />
<file src="Tools\DICOM Compare\bin\Release\Dicom.Compare.exe" target="tools\Dicom.Compare.exe" />
Expand Down
4 changes: 2 additions & 2 deletions fo-dicom.targets
Expand Up @@ -8,14 +8,14 @@
<When Condition="'$(PlatformTarget)' == 'x64'">
<ItemGroup>
<Reference Include="Dicom.Native64">
<HintPath>$(MSBuildThisFileDirectory)\lib\net40\Dicom.Native64.dll</HintPath>
<HintPath>$(MSBuildThisFileDirectory)\net40\Dicom.Native64.dll</HintPath>
</Reference>
</ItemGroup>
</When>
<When Condition="'$(PlatformTarget)' == 'x86'">
<ItemGroup>
<Reference Include="Dicom.Native">
<HintPath>$(MSBuildThisFileDirectory)\lib\net40\Dicom.Native.dll</HintPath>
<HintPath>$(MSBuildThisFileDirectory)\net40\Dicom.Native.dll</HintPath>
</Reference>
</ItemGroup>
</When>
Expand Down

0 comments on commit 296efc9

Please sign in to comment.