Skip to content

Commit f2edbdd

Browse files
committed
Added support for .NET Core RTM
1 parent e813f25 commit f2edbdd

File tree

6 files changed

+30
-46
lines changed

6 files changed

+30
-46
lines changed

Exceptionless.RandomData.sln

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25123.0
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Exceptionless.RandomData", "src\Exceptionless.RandomData\Exceptionless.RandomData.xproj", "{6D157F81-A2C0-440C-A10B-488A8D3A7BF4}"
77
EndProject
88
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Exceptionless.RandomData.Tests", "src\Exceptionless.RandomData.Tests\Exceptionless.RandomData.Tests.xproj", "{853401B5-50F9-4183-994A-CFC28DEEBD0D}"
99
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{98954EAB-7EFF-44E3-A9D0-1A21AD220B8B}"
11+
ProjectSection(SolutionItems) = preProject
12+
appveyor.yml = appveyor.yml
13+
global.json = global.json
14+
README.md = README.md
15+
EndProjectSection
16+
EndProject
1017
Global
1118
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1219
Debug|Any CPU = Debug|Any CPU

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"src"
44
],
55
"sdk": {
6-
"version": "1.0.0-preview1-002702"
6+
"version": "1.0.0-preview2-003121"
77
}
88
}

src/Exceptionless.RandomData.Tests/Exceptionless.RandomData.Tests.xproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
55
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
66
</PropertyGroup>
7-
87
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
98
<PropertyGroup Label="Globals">
109
<ProjectGuid>853401b5-50f9-4183-994a-cfc28deebd0d</ProjectGuid>
@@ -13,9 +12,11 @@
1312
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
1413
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
1514
</PropertyGroup>
16-
1715
<PropertyGroup>
1816
<SchemaVersion>2.0</SchemaVersion>
1917
</PropertyGroup>
18+
<ItemGroup>
19+
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
20+
</ItemGroup>
2021
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
21-
</Project>
22+
</Project>

src/Exceptionless.RandomData.Tests/project.json

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,24 @@
88
}
99
},
1010
"dependencies": {
11-
"dotnet-test-xunit": "1.0.0-rc2-*",
11+
"dotnet-test-xunit": "2.2.0-preview2-build1029",
1212
"Exceptionless.RandomData": {
1313
"target": "project"
1414
},
15-
"xunit": "2.1.0",
16-
"xunit.extensibility.core": "2.1.0",
17-
"xunit.extensibility.execution": "2.1.0",
18-
"xunit.runner.visualstudio": "2.1.0"
15+
"xunit": "2.2.0-beta2-build3300",
16+
"xunit.extensibility.core": "2.2.0-beta2-build3300",
17+
"xunit.extensibility.execution": "2.2.0-beta2-build3300",
18+
"xunit.runner.visualstudio": "2.2.0-beta2-build1149"
1919
},
2020
"frameworks": {
2121
"netcoreapp1.0": {
22-
"imports": [
23-
"dotnet",
24-
"portable-dnxcore50+net45+win8+wp8+wpa81",
25-
"portable-net45+win8"
26-
],
22+
"buildOptions": {
23+
"define": [ "NETSTANDARD", "NETSTANDARD1_3" ]
24+
},
2725
"dependencies": {
2826
"Microsoft.NETCore.App": {
29-
"version": "1.0.0-rc2-3002702",
30-
"type": "platform"
27+
"type": "platform",
28+
"version": "1.0.0"
3129
}
3230
}
3331
}
Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,14 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

5-
// General Information about an assembly is controlled through the following
6-
// set of attributes. Change these attribute values to modify the information
7-
// associated with an assembly.
84
[assembly: AssemblyTitle("Exceptionless.RandomData")]
9-
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
125
[assembly: AssemblyProduct("Exceptionless.RandomData")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
14-
[assembly: AssemblyTrademark("")]
15-
[assembly: AssemblyCulture("")]
6+
[assembly: AssemblyCopyright("Copyright © 2016")]
167

17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
208
[assembly: ComVisible(false)]
219

2210
// The following GUID is for the ID of the typelib if this project is exposed to COM
2311
[assembly: Guid("1d8416f8-f056-490b-b879-90467fded4b3")]
2412

25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
13+
[assembly: AssemblyVersion("1.1.0.0")]
14+
[assembly: AssemblyFileVersion("1.1.0.0")]

src/Exceptionless.RandomData/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"define": [ "NETSTANDARD", "NETSTANDARD1_3" ]
2424
},
2525
"dependencies": {
26-
"System.Linq": "4.1.0-rc2-24027",
27-
"System.Runtime.Extensions": "4.1.0-rc2-24027",
28-
"System.Runtime.InteropServices": "4.1.0-rc2-24027",
29-
"System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027"
26+
"System.Linq": "4.1.0",
27+
"System.Runtime.Extensions": "4.1.0",
28+
"System.Runtime.InteropServices": "4.1.0",
29+
"System.Security.Cryptography.Algorithms": "4.2.0"
3030
}
3131
},
3232
"net45": {

0 commit comments

Comments
 (0)