forked from jasder/antlr
Simplify structure of csharp runtime files, remove not used .sln file, use PackageIcon property instead of outdated PackageIcon in Antlr4.csproj
This commit is contained in:
parent
dc8fc4f94f
commit
b4ceb2022a
|
@ -324,7 +324,7 @@ public class BaseCSharpTest implements RuntimeTestSupport {
|
||||||
|
|
||||||
// find runtime package
|
// find runtime package
|
||||||
final ClassLoader loader = Thread.currentThread().getContextClassLoader();
|
final ClassLoader loader = Thread.currentThread().getContextClassLoader();
|
||||||
final URL runtimeProj = loader.getResource("CSharp/runtime/CSharp/Antlr4.Runtime/Antlr4.Runtime.csproj");
|
final URL runtimeProj = loader.getResource("CSharp/Antlr4.csproj");
|
||||||
if (runtimeProj == null) {
|
if (runtimeProj == null) {
|
||||||
throw new RuntimeException("C# runtime project file not found!");
|
throw new RuntimeException("C# runtime project file not found!");
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
|
@ -7,7 +7,7 @@
|
||||||
<NoWarn>$(NoWarn);CS1591;CS1574;CS1580</NoWarn>
|
<NoWarn>$(NoWarn);CS1591;CS1574;CS1580</NoWarn>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
<AssemblyName>Antlr4.Runtime.Standard</AssemblyName>
|
<AssemblyName>Antlr4.Runtime.Standard</AssemblyName>
|
||||||
<AssemblyOriginatorKeyFile>../../Antlr4.snk</AssemblyOriginatorKeyFile>
|
<AssemblyOriginatorKeyFile>Antlr4.snk</AssemblyOriginatorKeyFile>
|
||||||
<SignAssembly>true</SignAssembly>
|
<SignAssembly>true</SignAssembly>
|
||||||
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
||||||
<PackageId>Antlr4.Runtime.Standard</PackageId>
|
<PackageId>Antlr4.Runtime.Standard</PackageId>
|
||||||
|
@ -19,8 +19,7 @@
|
||||||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||||||
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
|
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
|
||||||
<PackageProjectUrl>https://github.com/antlr/antlr4</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/antlr/antlr4</PackageProjectUrl>
|
||||||
<!-- <PackageIcon>Antlr.png</PackageIcon> -->
|
<PackageIcon>Antlr.png</PackageIcon>
|
||||||
<PackageIconUrl>https://raw.github.com/antlr/website-antlr4/master/images/icons/antlr.png</PackageIconUrl>
|
|
||||||
<PackageReleaseNotes>https://github.com/antlr/antlr4/releases</PackageReleaseNotes>
|
<PackageReleaseNotes>https://github.com/antlr/antlr4/releases</PackageReleaseNotes>
|
||||||
<PackageTags>antlr parsing grammar</PackageTags>
|
<PackageTags>antlr parsing grammar</PackageTags>
|
||||||
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
|
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
|
||||||
|
@ -44,4 +43,9 @@
|
||||||
<Optimize>true</Optimize>
|
<Optimize>true</Optimize>
|
||||||
<OutputPath>lib\Release</OutputPath>
|
<OutputPath>lib\Release</OutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Update="Antlr.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue