-
Notifications
You must be signed in to change notification settings - Fork 0
/
BioFormats.NET6.csproj
62 lines (59 loc) · 2.39 KB
/
BioFormats.NET6.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageLicenseExpression>GPL-2.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Description>Bioformats 8.0.1. Built with IKVM 8.10.3 for .NET6 x64, Arm64.</Description>
<PackageReleaseNotes>Bioformats 8.0.1 update.</PackageReleaseNotes>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<RepositoryType></RepositoryType>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>8.0.1</Version>
<PackageProjectUrl>https://github.com/BiologyTools/BioFormatsNET6</PackageProjectUrl>
<RepositoryUrl>https://github.com/ome/bioformats</RepositoryUrl>
<PackageTags>bio-formats; ome; omero;</PackageTags>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="bioformats_package.dll" />
<None Remove="google.collect.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="bioformats_package.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>True</Pack>
<PackagePath>\lib\net6.0</PackagePath>
</Content>
<Content Include="google.collect.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>True</Pack>
<PackagePath>\lib\net6.0</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="Readme.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="IKVM" Version="8.10.3" />
</ItemGroup>
<ItemGroup>
<IkvmReference Include="bioformats_package.jar">
<AssemblyName>bioformats_package</AssemblyName>
<AssemblyVersion>8.0.1</AssemblyVersion>
<AssemblyFileVersion>8.0.1</AssemblyFileVersion>
<DisableAutoAssemblyName>true</DisableAutoAssemblyName>
<DisableAutoAssemblyVersion>true</DisableAutoAssemblyVersion>
<FallbackAssemblyName>bioformats_package</FallbackAssemblyName>
<FallbackAssemblyVersion>8.0.1</FallbackAssemblyVersion>
<Aliases>bioformats_package</Aliases>
<Compile>google-collect-1.0.jar</Compile>
<References>google-collect-1.0.jar</References>
</IkvmReference>
<IkvmReference Include="google-collect-1.0.jar" />
</ItemGroup>
</Project>