Skip to content

Instantly share code, notes, and snippets.

View kant2002's full-sized avatar
🚩
NativeAOT all the things! Buy Me a Coffee - https://ko-fi.com/andriikurdiumov

Andrii Kurdiumov kant2002

🚩
NativeAOT all the things! Buy Me a Coffee - https://ko-fi.com/andriikurdiumov
View GitHub Profile
@kant2002
kant2002 / Program.csproj
Created November 16, 2022 05:06 — forked from seclerp/Program.csrpoj
Solution for the task "Run the Java Hello World example via both dotnet run and javac"
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.java" />
</ItemGroup>