Skip to content

Commit

Permalink
Renamed for consistency. Issue fo-dicom#69
Browse files Browse the repository at this point in the history
  • Loading branch information
anders9ustafsson committed Sep 1, 2015
1 parent c9023e8 commit 25b0ba5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DICOM/DICOM.csproj
Expand Up @@ -189,7 +189,7 @@
<Compile Include="IO\Buffer\StreamByteBuffer.cs" />
<Compile Include="IO\FileByteSource.cs" />
<Compile Include="IO\FileByteTarget.cs" />
<Compile Include="IO\FileReference.cs" />
<Compile Include="IO\DesktopFileReference.cs" />
<Compile Include="IO\IByteSource.cs" />
<Compile Include="IO\IByteTarget.cs" />
<Compile Include="IO\Reader\DicomDatasetReaderObserver.cs" />
Expand Down Expand Up @@ -318,7 +318,7 @@
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<UserProperties BuildVersion_UseGlobalSettings="True" BuildVersion_BuildVersioningStyle="None.None.Increment.YearDayOfYear" />
<UserProperties BuildVersion_BuildVersioningStyle="None.None.Increment.YearDayOfYear" BuildVersion_UseGlobalSettings="True" />
</VisualStudio>
</ProjectExtensions>
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
Expand Down
Expand Up @@ -6,15 +6,15 @@

namespace Dicom.IO
{
public sealed class FileReference : IFileReference
public sealed class DesktopFileReference : IFileReference
{
public FileReference(string fileName, bool isTempFile = false)
public DesktopFileReference(string fileName, bool isTempFile = false)
{
Name = fileName;
IsTempFile = isTempFile;
}

~FileReference()
~DesktopFileReference()
{
if (IsTempFile)
{
Expand Down

0 comments on commit 25b0ba5

Please sign in to comment.