-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #214 from SMI/feature/net8
Feature/net8
- Loading branch information
Showing
6 changed files
with
67 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,52 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PackageId>HIC.BadMedicine.Dicom</PackageId> | ||
<Authors>Health Informatics Centre - University of Dundee</Authors> | ||
<PackageDescription>Generate large volumes of complex (in terms of tags) DICOM images for integration/stress testing ETL and image management tools. BadMedicine.Dicom generates DICOM images on demand based on an anonymous aggregate model of tag data found in Scottish medical imaging with a small memory footprint.</PackageDescription> | ||
<PackageProjectUrl>https://github.com/SMI/BadMedicine.Dicom</PackageProjectUrl> | ||
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression> | ||
<Copyright>Copyright 2019</Copyright> | ||
<PackageTags>DICOM,Test Data,Random,Synthetic Data,Health</PackageTags> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="fo-dicom" Version="5.1.2" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<None Remove="DicomDataGeneratorDescBodyPart.csv" /> | ||
<None Remove="DicomDataGeneratorModalities.csv" /> | ||
<None Remove="DicomDataGeneratorTags.csv" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\SharedAssemblyInfo.cs" Link="SharedAssemblyInfo.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="DicomDataGeneratorDescBodyPart.csv" /> | ||
<EmbeddedResource Include="DicomDataGeneratorModalities.csv" /> | ||
<EmbeddedResource Include="DicomDataGeneratorTags.csv" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="HIC.BadMedicine" Version="1.1.2" /> | ||
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" /> | ||
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.2" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PackageId>HIC.BadMedicine.Dicom</PackageId> | ||
<Authors>Health Informatics Centre - University of Dundee</Authors> | ||
<PackageDescription>Generate large volumes of complex (in terms of tags) DICOM images for integration/stress testing ETL and image management tools. BadMedicine.Dicom generates DICOM images on demand based on an anonymous aggregate model of tag data found in Scottish medical imaging with a small memory footprint.</PackageDescription> | ||
<PackageProjectUrl>https://github.com/SMI/BadMedicine.Dicom</PackageProjectUrl> | ||
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression> | ||
<Copyright>Copyright 2019</Copyright> | ||
<PackageTags>DICOM,Test Data,Random,Synthetic Data,Health</PackageTags> | ||
<Nullable>enable</Nullable> | ||
<IsAotCompatible>true</IsAotCompatible> | ||
<EnableTrimAnalyzer>true</EnableTrimAnalyzer> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="fo-dicom" Version="5.1.2" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<None Include="..\README.md" Pack="true" PackagePath="\"/> | ||
<None Remove="DicomDataGeneratorDescBodyPart.csv" /> | ||
<None Remove="DicomDataGeneratorModalities.csv" /> | ||
<None Remove="DicomDataGeneratorTags.csv" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\SharedAssemblyInfo.cs" Link="SharedAssemblyInfo.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="DicomDataGeneratorDescBodyPart.csv" /> | ||
<EmbeddedResource Include="DicomDataGeneratorModalities.csv" /> | ||
<EmbeddedResource Include="DicomDataGeneratorTags.csv" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="HIC.BadMedicine" Version="1.2.0" /> | ||
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" /> | ||
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.2" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters