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
32 lines (32 loc) · 1.19 KB
/
Copy pathJavaToCSharp.csproj
File metadata and controls
32 lines (32 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
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>2.1.0</Version>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Authors>Paul Irwin</Authors>
<Description>A Java to C# converter.</Description>
<Copyright>Copyright 2021, Paul Irwin</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/paulirwin/JavaToCSharp</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="IKVM" Version="8.1.5717" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="javaparser-core-3.0.0-SNAPSHOT">
<HintPath>..\Lib\javaparser-core-3.0.0-SNAPSHOT.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Include="..\Lib\javaparser-core-3.0.0-SNAPSHOT.dll">
<Pack>true</Pack>
<PackagePath>lib\$(TargetFramework)</PackagePath>
</Content>
</ItemGroup>
</Project>