Skip to content

Commit

Permalink
SymbolFacts generated
Browse files Browse the repository at this point in the history
  • Loading branch information
balazssimon committed Jul 16, 2019
1 parent 2349a90 commit 0408ea4
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ private void GenerateParser()
Directory.CreateDirectory(Path.Combine(this.OutputDirectory, @"Parser"));
Directory.CreateDirectory(Path.Combine(this.OutputDirectory, @"Compilation"));
Directory.CreateDirectory(Path.Combine(this.OutputDirectory, @"Binding"));
Directory.CreateDirectory(Path.Combine(this.OutputDirectory, @"Symbols"));
this.GenerateOutputFile(Path.Combine(this.InternalSyntaxDirectory, this.LanguageName + "InternalSyntax.cs"), this.GeneratedInternalSyntax);
this.GenerateOutputFile(Path.Combine(this.SyntaxDirectory, this.LanguageName + "SyntaxKind.Nodes.cs"), this.GeneratedSyntaxKind);
this.GenerateOutputFile(Path.Combine(this.SyntaxDirectory, this.LanguageName + "SyntaxFacts.Nodes.cs"), this.GeneratedNodeSyntaxFacts);
Expand Down
13 changes: 0 additions & 13 deletions src/Main/MetaDslx.Languages.Meta/Symbols/MetaSymbolFacts.cs

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="MetaDslx.VisualStudio.cf2296b0-4cb6-423a-9130-8a56bfd89938" Version="0.10.7" Language="en-US" Publisher="Balazs Simon" />
<Identity Id="MetaDslx.VisualStudio.cf2296b0-4cb6-423a-9130-8a56bfd89938" Version="0.10.12" Language="en-US" Publisher="Balazs Simon" />
<DisplayName>MetaDslx Extension for Visual Studio</DisplayName>
<Description xml:space="preserve">Visual Studio extension for the MetaDslx metamodeling platform.</Description>
<License>license.txt</License>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MetaDslx.BuildTasks" Version="0.10.5-alpha1" />
<PackageReference Include="MetaDslx.CodeAnalysis" Version="0.10.5-alpha1" />
<PackageReference Include="MetaDslx.BuildTasks" Version="0.10.11-alpha1" />
<PackageReference Include="MetaDslx.CodeAnalysis" Version="0.10.11-alpha1" />
</ItemGroup>

</Project>
11 changes: 0 additions & 11 deletions src/Samples/MetaDslx.Languages.Soal/SoalSymbolFacts.cs

This file was deleted.

4 changes: 2 additions & 2 deletions src/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
-->
<PropertyGroup>
<OfficialBuild>true</OfficialBuild>
<VersionPrefix>0.10.9</VersionPrefix>
<VersionPrefix>0.10.12</VersionPrefix>
<VersionSuffix Condition="'$(OfficialBuild)' != 'true' and '$(DotNetUseShippingVersions)' != 'true'">alpha1</VersionSuffix>
<BootstrapVersion>0.10.8</BootstrapVersion>
<BootstrapVersion>0.10.11-alpha1</BootstrapVersion>
<SemanticVersioningV1>true</SemanticVersioningV1>
<!--
By default the assembly version in official builds is "$(VersionPrefix).0".
Expand Down
5 changes: 5 additions & 0 deletions src/pack-debug.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
cd Main\MetaDslx.BuildTasks
dotnet pack --no-build -c Debug
cd ..\MetaDslx.CodeAnalysis
dotnet pack --no-build -c Debug
cd ..\..
5 changes: 5 additions & 0 deletions src/pack-release.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
cd Main\MetaDslx.BuildTasks
dotnet pack --no-build -c Release
cd ..\MetaDslx.CodeAnalysis
dotnet pack --no-build -c Release
cd ..\..

0 comments on commit 0408ea4

Please sign in to comment.