-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathImageJ.NET.csproj
50 lines (50 loc) · 1.8 KB
/
ImageJ.NET.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>false</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Platforms>AnyCPU</Platforms>
<Description>ImageJ "ij154" converted to .NET with IKVM.</Description>
<Authors>Erik Repo</Authors>
<Title>ImageJ.NET</Title>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>154.0.0.1</Version>
<PackageProjectUrl>https://imagej.net/</PackageProjectUrl>
<PackageIcon>imagej.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/BiologyTools/ImageJ.NET</RepositoryUrl>
<PackageTags>imagej; microscopy;</PackageTags>
<PackageReleaseNotes>IKVM 8.9.0 prelease update.</PackageReleaseNotes>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<Content Include="ij.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>True</Pack>
<PackagePath>\lib\net8.0</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<IkvmReference Include="ij.jar">
<AssemblyName>ij</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyFileVersion>1.0.0.0</AssemblyFileVersion>
</IkvmReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="IKVM" Version="8.9.0-pre.1" />
</ItemGroup>
<ItemGroup>
<None Update="imagej.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>