Created
July 6, 2022 07:08
-
-
Save altbodhi/fb1045b7d68cc816ae500b39776fcc17 to your computer and use it in GitHub Desktop.
minimal proj file for nemerle under dotnet core
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<NoStdLib>True</NoStdLib> | |
<OutputType>exe</OutputType> | |
<OutputPath>bin</OutputPath> | |
<TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier> | |
<TargetFrameworkVersion>6.0</TargetFrameworkVersion> | |
<TargetFramework>net6.0</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Nemerle.Core" GeneratePathProperty="true"> | |
<Version>1.2.0</Version> | |
</PackageReference> | |
</ItemGroup> | |
<Import Project="$(PkgNemerle_Core)/content/Nemerle.MSBuild.targets" /> | |
<ItemGroup> | |
<Reference Include="Nemerle"> | |
<HintPath>$(Nemerle)/Nemerle.dll</HintPath> | |
</Reference> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment