Skip to content

Commit d72c571

Browse files
committed
154.0.0 ImageJ.NET Release
1 parent 5e2329d commit d72c571

10 files changed

Lines changed: 55 additions & 235 deletions

File tree

Form1.Designer.cs

Lines changed: 0 additions & 39 deletions
This file was deleted.

Form1.cs

Lines changed: 0 additions & 20 deletions
This file was deleted.

Form1.resx

Lines changed: 0 additions & 120 deletions
This file was deleted.

ImageJ.NET.csproj

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Library</OutputType>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<UseWindowsForms>false</UseWindowsForms>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<Platforms>AnyCPU</Platforms>
9+
<Description>ImageJ "ij154" converted to .NET with IKVM.</Description>
10+
<Authors>Erik Repo</Authors>
11+
<Title>ImageJ.NET</Title>
12+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
13+
<Version>154.0.0</Version>
14+
<PackageProjectUrl>https://imagej.net/</PackageProjectUrl>
15+
<PackageIcon>imagej.png</PackageIcon>
16+
<PackageReadmeFile>README.md</PackageReadmeFile>
17+
<RepositoryUrl>https://github.com/BiologyTools/ImageJ.NET</RepositoryUrl>
18+
<PackageTags>imagej; microscopy;</PackageTags>
19+
<PackageReleaseNotes>First release of ImageJ.NET.</PackageReleaseNotes>
20+
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
21+
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
22+
</PropertyGroup>
23+
<ItemGroup>
24+
<None Remove="ij.dll" />
25+
</ItemGroup>
26+
<ItemGroup>
27+
<Content Include="ij.dll">
28+
<Pack>True</Pack>
29+
<PackagePath>\lib\net8.0</PackagePath>
30+
</Content>
31+
</ItemGroup>
32+
<ItemGroup>
33+
<IkvmReference Include="ij.jar">
34+
<AssemblyName>ij</AssemblyName>
35+
<AssemblyVersion>1.0.0.0</AssemblyVersion>
36+
<AssemblyFileVersion>1.0.0.0</AssemblyFileVersion>
37+
</IkvmReference>
38+
</ItemGroup>
39+
<ItemGroup>
40+
<PackageReference Include="IKVM" Version="8.9.0-PullRequest0528.145" />
41+
</ItemGroup>
42+
<ItemGroup>
43+
<None Update="imagej.png">
44+
<Pack>True</Pack>
45+
<PackagePath>\</PackagePath>
46+
</None>
47+
<None Update="README.md">
48+
<Pack>True</Pack>
49+
<PackagePath>\</PackagePath>
50+
</None>
51+
</ItemGroup>
52+
</Project>

ImageJTest.sln renamed to ImageJ.NET.sln

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.10.35013.160
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageJTest", "ImageJTest.csproj", "{57B2310D-EB6D-4C0F-BE48-583A253BD97B}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageJ.NET", "ImageJ.NET.csproj", "{57B2310D-EB6D-4C0F-BE48-583A253BD97B}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
11-
Debug|x64 = Debug|x64
1211
Release|Any CPU = Release|Any CPU
13-
Release|x64 = Release|x64
1412
EndGlobalSection
1513
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1614
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1715
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Debug|Any CPU.Build.0 = Debug|Any CPU
18-
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Debug|x64.ActiveCfg = Debug|x64
19-
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Debug|x64.Build.0 = Debug|x64
2016
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Release|Any CPU.ActiveCfg = Release|Any CPU
2117
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Release|Any CPU.Build.0 = Release|Any CPU
22-
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Release|x64.ActiveCfg = Release|x64
23-
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Release|x64.Build.0 = Release|x64
2418
EndGlobalSection
2519
GlobalSection(SolutionProperties) = preSolution
2620
HideSolutionNode = FALSE

ImageJTest.csproj

Lines changed: 0 additions & 20 deletions
This file was deleted.

Program.cs

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,8 @@
1-
# ImageJControl
2-
ImageJ Control using C# and IKVM 8.9.0 pre-release.
1+
# ImageJ.NET
2+
ImageJ control using C# and IKVM 8.9.0 pre-release.
33

44
# Building
55
- Get IKVM 8.9.0 or the [developer pre-release](https://github.com/ikvmnet/ikvm/actions/runs/9238355862/artifacts/1537937356).
6-
- Add IKVMReference
7-
```
8-
<ItemGroup>
9-
<IkvmReference Include="ij.jar">
10-
<AssemblyName>ij</AssemblyName>
11-
<AssemblyVersion>1.0.0.0</AssemblyVersion>
12-
<AssemblyFileVersion>1.0.0.0</AssemblyFileVersion>
13-
</IkvmReference>
14-
</ItemGroup>
15-
```
166
- Then use ImageJ in C# with ij namespace.
177
```
188
ij.ImageJ ijm = new ij.ImageJ();

ij.dll

2.89 MB
Binary file not shown.

imagej.png

14.1 KB
Loading

0 commit comments

Comments
 (0)