Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL := /bin/bash

.PHONY: release debug all dsl nuget clean test
.PHONY: release debug all dsl nuget pack clean test
release:
$(MAKE) -C src release

Expand All @@ -16,6 +16,9 @@ dsl:
nuget:
$(MAKE) -C src nuget

pack:
$(MAKE) -C src pack

clean:
$(MAKE) -C src clean

Expand Down
33 changes: 0 additions & 33 deletions src/Flame.Clr.nuspec

This file was deleted.

10 changes: 10 additions & 0 deletions src/Flame.Clr/Flame.Clr.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
<AssemblyName>Flame.Clr</AssemblyName>
<Version>1.0</Version>
<TargetFramework>net10.0</TargetFramework>
<PackageId>Flame.Clr</PackageId>
<Authors>Jonathan Van der Cruysse</Authors>
<PackageProjectUrl>https://github.com/jonathanvdc/Flame</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>Flame is a collection of C# libraries for building tools that read, analyze, optimize and write managed languages.

This package contains a Common Intermediate Representation (CIL) front-end and back-end for Flame. It allows you to build Flame-based tools that consume and/or produce CIL.</Description>
<Copyright>Copyright 2019</Copyright>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageTags>Flame Compiler Cecil IL</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
10 changes: 10 additions & 0 deletions src/Flame.Compiler/Flame.Compiler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
<AssemblyName>Flame.Compiler</AssemblyName>
<Version>1.0</Version>
<TargetFrameworks>net10.0;netstandard2.0;net472</TargetFrameworks>
<PackageId>Flame.Compiler</PackageId>
<Authors>Jonathan Van der Cruysse</Authors>
<PackageProjectUrl>https://github.com/jonathanvdc/Flame</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>Flame is a collection of C# libraries for building tools that read, analyze, optimize and write managed languages.

This package contains the compiler-oriented Flame.Compiler library.</Description>
<Copyright>Copyright 2019</Copyright>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageTags>Flame Compiler</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
37 changes: 0 additions & 37 deletions src/Flame.Ir.nuspec

This file was deleted.

10 changes: 10 additions & 0 deletions src/Flame.Ir/Flame.Ir.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
<AssemblyName>Flame.Ir</AssemblyName>
<Version>1.0</Version>
<TargetFramework>net10.0</TargetFramework>
<PackageId>Flame.Ir</PackageId>
<Authors>Jonathan Van der Cruysse</Authors>
<PackageProjectUrl>https://github.com/jonathanvdc/Flame</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>Flame is a collection of C# libraries for building tools that read, analyze, optimize and write managed languages.

This package defines a textual representation for Flame IR, allowing you to read and write Flame IR.</Description>
<Copyright>Copyright 2019</Copyright>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageTags>Flame Compiler Loyc IR</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
33 changes: 0 additions & 33 deletions src/Flame.nuspec

This file was deleted.

4 changes: 3 additions & 1 deletion src/Flame.sln
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
# Visual Studio Version 17
VisualStudioVersion = 17.11.35327.3
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Flame", "Flame\Flame.csproj", "{59B6DEC4-F58F-4DDF-835D-5F01B54F517E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "UnitTests\UnitTests.csproj", "{5202A5A4-69CB-4795-A998-4BAC410900F0}"
Expand Down
10 changes: 10 additions & 0 deletions src/Flame/Flame.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
<AssemblyName>Flame</AssemblyName>
<Version>1.0</Version>
<TargetFrameworks>net10.0;netstandard2.0;net472</TargetFrameworks>
<PackageId>Flame</PackageId>
<Authors>Jonathan Van der Cruysse</Authors>
<PackageProjectUrl>https://github.com/jonathanvdc/Flame</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>Flame is a collection of C# libraries for building tools that read, analyze, optimize and write managed languages.

This package contains the core Flame library.</Description>
<Copyright>Copyright 2019</Copyright>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageTags>Flame Compiler</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
5 changes: 4 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ debug:
all: debug release

nuget:
nuget restore Flame.sln
dotnet restore Flame.sln

pack:
dotnet pack Flame.sln -c Release

clean:
make -C Flame clean
Expand Down
Loading