Skip to content

Commit bb02e8f

Browse files
Espen Roevik Larsenespenrl
Espen Roevik Larsen
authored andcommitted
.NET Standard 1.3 / embedded Antlr4.Runtime
1 parent 48a9de1 commit bb02e8f

File tree

259 files changed

+39051
-1068
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

259 files changed

+39051
-1068
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@
44
packages/
55
bin/
66
obj/
7-
erl.Oracle.TnsNames/lib/net40/
7+
node_modules/
8+
.vs/
89

910

1011
### files
1112
*.DotSettings.user
1213
*.csproj.DotSettings
1314
*.csproj.user
15+
*.xproj.user
1416
*.suo
1517
*.nupkg
1618
*.nupkg.bak
19+
*.targets
20+
project.lock.json
1721
NuGet.log

TNS names.sln

+9-17
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.31101.0
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "erl.Oracle.TnsNames", "erl.Oracle.TnsNames\erl.Oracle.TnsNames.csproj", "{0451BAEF-DF2E-4B98-8644-94EE9415E389}"
7-
ProjectSection(ProjectDependencies) = postProject
8-
{ED32DA5C-757B-418B-A753-572E1FADB498} = {ED32DA5C-757B-418B-A753-572E1FADB498}
9-
EndProjectSection
10-
EndProject
11-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TNS names", "TnsNames\TNS names.csproj", "{ED32DA5C-757B-418B-A753-572E1FADB498}"
12-
EndProject
136
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TNS names Info", "TnsNamesInfo\TNS names Info.csproj", "{8CD5B0A6-8E7F-4C6F-B487-151054970B23}"
147
EndProject
158
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{987C93A3-8EDC-4A02-B887-8D258E844DDF}"
@@ -22,28 +15,27 @@ EndProject
2215
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8C197B45-2429-4857-BD2A-24B647264F99}"
2316
ProjectSection(SolutionItems) = preProject
2417
.gitignore = .gitignore
18+
global.json = global.json
2519
LICENSE = LICENSE
2620
README.md = README.md
2721
EndProjectSection
2822
EndProject
23+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "erl.Oracle.TnsNames", "erl.Oracle.TnsNames\erl.Oracle.TnsNames.xproj", "{3E7218EE-6AF7-40AF-A89B-9CFBDC23A37E}"
24+
EndProject
2925
Global
3026
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3127
Debug|Any CPU = Debug|Any CPU
3228
Release|Any CPU = Release|Any CPU
3329
EndGlobalSection
3430
GlobalSection(ProjectConfigurationPlatforms) = postSolution
35-
{0451BAEF-DF2E-4B98-8644-94EE9415E389}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36-
{0451BAEF-DF2E-4B98-8644-94EE9415E389}.Debug|Any CPU.Build.0 = Debug|Any CPU
37-
{0451BAEF-DF2E-4B98-8644-94EE9415E389}.Release|Any CPU.ActiveCfg = Release|Any CPU
38-
{0451BAEF-DF2E-4B98-8644-94EE9415E389}.Release|Any CPU.Build.0 = Release|Any CPU
39-
{ED32DA5C-757B-418B-A753-572E1FADB498}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
40-
{ED32DA5C-757B-418B-A753-572E1FADB498}.Debug|Any CPU.Build.0 = Debug|Any CPU
41-
{ED32DA5C-757B-418B-A753-572E1FADB498}.Release|Any CPU.ActiveCfg = Release|Any CPU
42-
{ED32DA5C-757B-418B-A753-572E1FADB498}.Release|Any CPU.Build.0 = Release|Any CPU
4331
{8CD5B0A6-8E7F-4C6F-B487-151054970B23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4432
{8CD5B0A6-8E7F-4C6F-B487-151054970B23}.Debug|Any CPU.Build.0 = Debug|Any CPU
4533
{8CD5B0A6-8E7F-4C6F-B487-151054970B23}.Release|Any CPU.ActiveCfg = Release|Any CPU
4634
{8CD5B0A6-8E7F-4C6F-B487-151054970B23}.Release|Any CPU.Build.0 = Release|Any CPU
35+
{3E7218EE-6AF7-40AF-A89B-9CFBDC23A37E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{3E7218EE-6AF7-40AF-A89B-9CFBDC23A37E}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{3E7218EE-6AF7-40AF-A89B-9CFBDC23A37E}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{3E7218EE-6AF7-40AF-A89B-9CFBDC23A37E}.Release|Any CPU.Build.0 = Release|Any CPU
4739
EndGlobalSection
4840
GlobalSection(SolutionProperties) = preSolution
4941
HideSolutionNode = FALSE

TnsNames/Properties/AssemblyInfo.cs

-35
This file was deleted.

TnsNames/TNS names.csproj

-132
This file was deleted.

TnsNames/packages.config

-6
This file was deleted.

TnsNamesInfo/App.config

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
55
</startup>
6-
</configuration>
6+
<runtime>
7+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
8+
<dependentAssembly>
9+
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
10+
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
11+
</dependentAssembly>
12+
<dependentAssembly>
13+
<assemblyIdentity name="System.IO.FileSystem" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
14+
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
15+
</dependentAssembly>
16+
<dependentAssembly>
17+
<assemblyIdentity name="System.IO.FileSystem.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
18+
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
19+
</dependentAssembly>
20+
</assemblyBinding>
21+
</runtime>
22+
</configuration>

TnsNamesInfo/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public static void Main(string[] args)
1010
try
1111
{
1212
var rootFilesInfos = TnsNames.ResolveRootTnsNamesFiles();
13-
var allFiles = TnsNames.OpenTnsNamesFiles(rootFilesInfos, ignoreErrors: false, followIFileEntries: true);
13+
var allFiles = TnsNames.OpenTnsNamesFiles(rootFilesInfos, ignoreErrors: true, followIFileEntries: true);
1414

1515
Console.WriteLine("### Resolved root TNS names files\n");
1616
foreach (var fileInfo in rootFilesInfos.OrderBy(f => f.Source).ThenBy(f => f.SourceOrder))

TnsNamesInfo/Properties/AssemblyInfo.cs

+3-8
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,8 @@
55
// set of attributes. Change these attribute values to modify the information
66
// associated with an assembly.
77
[assembly: AssemblyTitle("erl.Oracle.TnsNames")]
8-
[assembly: AssemblyDescription("")]
9-
[assembly: AssemblyConfiguration("")]
10-
[assembly: AssemblyCompany("")]
118
[assembly: AssemblyProduct("erl.Oracle.TnsNames")]
12-
[assembly: AssemblyCopyright("Copyright © Espen Røvik Larsen 2015")]
13-
[assembly: AssemblyTrademark("")]
14-
[assembly: AssemblyCulture("")]
9+
[assembly: AssemblyCopyright("Copyright © Espen Røvik Larsen 2016")]
1510

1611
// Setting ComVisible to false makes the types in this assembly not visible
1712
// to COM components. If you need to access a type in this assembly from
@@ -31,5 +26,5 @@
3126
// You can specify all the values or you can default the Build and Revision Numbers
3227
// by using the '*' as shown below:
3328
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.2.0")]
35-
[assembly: AssemblyFileVersion("1.0.2.0")]
29+
[assembly: AssemblyVersion("1.1.0.0")]
30+
[assembly: AssemblyFileVersion("1.1.0.0")]

0 commit comments

Comments
 (0)