Skip to content

Commit

Permalink
Rename app to IronMeta.App
Browse files Browse the repository at this point in the history
  • Loading branch information
chalcolith committed Jan 1, 2018
1 parent d34b0a4 commit 6b3d0a7
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 17 deletions.
4 changes: 3 additions & 1 deletion IronMeta.sln
Expand Up @@ -7,7 +7,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IronMeta.Library", "Source\
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IronMeta.Tests", "Source\IronMeta.Tests\IronMeta.Tests.csproj", "{23BA97AC-D864-4D70-A2BD-D564A5ADA325}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IronMeta", "Source\IronMeta\IronMeta.csproj", "{CA44EA8F-27C5-40AA-94B8-D61FE9C4574C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IronMeta.App", "Source\IronMeta.App\IronMeta.App.csproj", "{CA44EA8F-27C5-40AA-94B8-D61FE9C4574C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Calc", "Samples\Calc\Calc.csproj", "{9FFE9F3E-712A-4076-9F70-A1A03D3BB820}"
EndProject
Expand Down Expand Up @@ -45,7 +45,9 @@ Global
{9FFE9F3E-712A-4076-9F70-A1A03D3BB820}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9FFE9F3E-712A-4076-9F70-A1A03D3BB820}.Release|Any CPU.Build.0 = Release|Any CPU
{1522FF5D-1356-45F4-BED6-D653DEE0AFC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1522FF5D-1356-45F4-BED6-D653DEE0AFC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1522FF5D-1356-45F4-BED6-D653DEE0AFC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1522FF5D-1356-45F4-BED6-D653DEE0AFC8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -28,7 +28,7 @@ Once you have installed the NuGet package, add a grammar file with the extension
</Target>
```

- A command-line program `IronMeta.exe` is included in the NuGet package, in the `tools` directory. The program takes the following arguments:
- A command-line program `IronMetaApp.exe` is included in the NuGet package, in the `tools` directory. The program takes the following arguments:
- `-o {output}` (optional): Specify the output file name (defaults to `{input}_.g.cs`).
- `-n {namespace}` (optional): Specify the namespace to use for the generated parser (defaults to the name of the directory the input file is in).
- `-f` (optional): Force generation even if the input file is older than the output file.
Expand Down
@@ -1,13 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp2.0;net471;net462</TargetFrameworks>
<PackageId>IronMeta.CommandLine</PackageId>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\IronMeta.Library\IronMeta.Library.csproj" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp2.0;net471;net462</TargetFrameworks>
<PackageId>IronMeta.App</PackageId>
<RootNamespace>IronMeta</RootNamespace>
<Version>4.4.0</Version>
<Authors>Gordon Tisher</Authors>
<Company />
<Product>IronMeta</Product>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\IronMeta.Library\IronMeta.Library.csproj" />
</ItemGroup>

</Project>
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions Source/IronMeta.Library/IronMeta.Library.csproj
Expand Up @@ -22,7 +22,7 @@
</PropertyGroup>

<ItemGroup Condition="'$(Configuration)' == 'Release'">
<Content Include="..\IronMeta\bin\Release\net471\IronMeta.exe">
<Content Include="..\IronMeta.App\bin\Release\net471\IronMeta.App.exe">
<PackagePath>tools\net471</PackagePath>
</Content>
<Content Include="..\IronMeta\bin\Release\net471\IronMeta.Library.dll">
Expand All @@ -32,7 +32,7 @@
<PackagePath>tools\net471</PackagePath>
</Content>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Verophyle.Regexp" Version="2.2.1" />
</ItemGroup>
Expand Down

0 comments on commit 6b3d0a7

Please sign in to comment.