Skip to content

Commit

Permalink
154.0.0 ImageJ.NET Release
Browse files Browse the repository at this point in the history
  • Loading branch information
BiologyTools committed Jul 2, 2024
1 parent 5e2329d commit d72c571
Show file tree
Hide file tree
Showing 10 changed files with 55 additions and 235 deletions.
39 changes: 0 additions & 39 deletions Form1.Designer.cs

This file was deleted.

20 changes: 0 additions & 20 deletions Form1.cs

This file was deleted.

120 changes: 0 additions & 120 deletions Form1.resx

This file was deleted.

52 changes: 52 additions & 0 deletions ImageJ.NET.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<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</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>First release of ImageJ.NET.</PackageReleaseNotes>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<None Remove="ij.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="ij.dll">
<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-PullRequest0528.145" />
</ItemGroup>
<ItemGroup>
<None Update="imagej.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>
8 changes: 1 addition & 7 deletions ImageJTest.sln → ImageJ.NET.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.10.35013.160
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageJTest", "ImageJTest.csproj", "{57B2310D-EB6D-4C0F-BE48-583A253BD97B}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageJ.NET", "ImageJ.NET.csproj", "{57B2310D-EB6D-4C0F-BE48-583A253BD97B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Debug|x64.ActiveCfg = Debug|x64
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Debug|x64.Build.0 = Debug|x64
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Release|Any CPU.Build.0 = Release|Any CPU
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Release|x64.ActiveCfg = Release|x64
{57B2310D-EB6D-4C0F-BE48-583A253BD97B}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
20 changes: 0 additions & 20 deletions ImageJTest.csproj

This file was deleted.

17 changes: 0 additions & 17 deletions Program.cs

This file was deleted.

14 changes: 2 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
# ImageJControl
ImageJ Control using C# and IKVM 8.9.0 pre-release.
# ImageJ.NET
ImageJ control using C# and IKVM 8.9.0 pre-release.

# Building
- Get IKVM 8.9.0 or the [developer pre-release](https://github.com/ikvmnet/ikvm/actions/runs/9238355862/artifacts/1537937356).
- Add IKVMReference
```
<ItemGroup>
<IkvmReference Include="ij.jar">
<AssemblyName>ij</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyFileVersion>1.0.0.0</AssemblyFileVersion>
</IkvmReference>
</ItemGroup>
```
- Then use ImageJ in C# with ij namespace.
```
ij.ImageJ ijm = new ij.ImageJ();
Expand Down
Binary file added ij.dll
Binary file not shown.
Binary file added imagej.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d72c571

Please sign in to comment.