forked from paulirwin/JavaToCSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaToCSharp.csproj
More file actions
28 lines (28 loc) · 1.19 KB
/
Copy pathJavaToCSharp.csproj
File metadata and controls
28 lines (28 loc) · 1.19 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>4.0.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<WarningsAsErrors>nullable</WarningsAsErrors>
<Authors>Paul Irwin</Authors>
<Description>A Java to C# converter.</Description>
<Copyright>Copyright 2021-2023, Paul Irwin</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/paulirwin/JavaToCSharp</RepositoryUrl>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="IKVM" Version="8.13.2" />
<PackageReference Include="IKVM.Maven.Sdk" Version="1.9.4" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
<PackageReference Include="YamlDotNet" Version="16.0.0" />
</ItemGroup>
<ItemGroup>
<MavenReference Include="com.github.javaparser:javaparser-symbol-solver-core" Version="3.25.4" />
</ItemGroup>
</Project>