-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMetaPrograms.JavaScript.csproj
More file actions
28 lines (25 loc) · 1.07 KB
/
MetaPrograms.JavaScript.csproj
File metadata and controls
28 lines (25 loc) · 1.07 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>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>7.2</LangVersion>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
<Version>0.0.0-dev</Version>
<Description>
Parse, transform, and generate code in an extensible set of languages.
This package is allows generating code in JavaScript language (ES6) with JSX support.
</Description>
<Authors>Felix Berman</Authors>
<Copyright>Copyright © Felix Berman 2018</Copyright>
<PackageProjectUrl>https://github.com/nwheels-io/MetaPrograms</PackageProjectUrl>
<PackageIconUrl>https://avatars1.githubusercontent.com/u/13036333</PackageIconUrl>
<PackageLicenseUrl>https://github.com/nwheels-io/MetaPrograms/blob/master/LICENSE</PackageLicenseUrl>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\MetaPrograms\MetaPrograms.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Expressions" />
</ItemGroup>
</Project>