-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMetaPrograms.CSharp.csproj
More file actions
30 lines (28 loc) · 1.31 KB
/
MetaPrograms.CSharp.csproj
File metadata and controls
30 lines (28 loc) · 1.31 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
<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 parsing and generating code in C# language.
</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>
<PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.9.0" />
<PackageReference Include="Buildalyzer" Version="2.1.0" />
<PackageReference Include="Buildalyzer.Workspaces" Version="2.1.0" />
</ItemGroup>
</Project>