Skip to content
This repository was archived by the owner on Nov 18, 2017. It is now read-only.

Commit b0b94f4

Browse files
Merge pull request #35 from NLog/rename
Rename project and folders
2 parents 360cf99 + 6e22515 commit b0b94f4

31 files changed

Lines changed: 81 additions & 74 deletions

Parser.sln renamed to NLog.StructuredEvents.sln

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
99
global.json = global.json
1010
EndProjectSection
1111
EndProject
12-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Parser", "src\Parser\Parser.xproj", "{58438CA4-C827-4E4B-A243-0BFBCD48A2DD}"
12+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.StructuredEvents", "src\NLog.StructuredEvents\NLog.StructuredEvents.xproj", "{58438CA4-C827-4E4B-A243-0BFBCD48A2DD}"
1313
EndProject
14-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Parser.Tests", "test\Parser.Tests\Parser.Tests.xproj", "{8867FF56-F14D-408C-B126-FE9CF13AE207}"
14+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.StructuredEvents.Tests", "test\NLog.StructuredEvents.Tests\NLog.StructuredEvents.Tests.xproj", "{8867FF56-F14D-408C-B126-FE9CF13AE207}"
15+
EndProject
16+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Benchmarks", "test\Benchmarks\Benchmarks.xproj", "{EC23ABDF-B869-459F-97C5-DD25279567F1}"
1517
EndProject
1618
Global
1719
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -27,6 +29,10 @@ Global
2729
{8867FF56-F14D-408C-B126-FE9CF13AE207}.Debug|Any CPU.Build.0 = Debug|Any CPU
2830
{8867FF56-F14D-408C-B126-FE9CF13AE207}.Release|Any CPU.ActiveCfg = Release|Any CPU
2931
{8867FF56-F14D-408C-B126-FE9CF13AE207}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{EC23ABDF-B869-459F-97C5-DD25279567F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{EC23ABDF-B869-459F-97C5-DD25279567F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{EC23ABDF-B869-459F-97C5-DD25279567F1}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{EC23ABDF-B869-459F-97C5-DD25279567F1}.Release|Any CPU.Build.0 = Release|Any CPU
3036
EndGlobalSection
3137
GlobalSection(SolutionProperties) = preSolution
3238
HideSolutionNode = FALSE

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ build_script:
33
- ps: .\build.ps1
44
test_script:
55
- nuget.exe install OpenCover -ExcludeVersion
6-
- OpenCover\tools\OpenCover.Console.exe -register:user -filter:"+[Parser]*" -target:"dotnet.exe" "-targetargs:test test\Parser.Tests" -returntargetcode -hideskipped:All -output:coverage.xml
6+
- OpenCover\tools\OpenCover.Console.exe -register:user -filter:"+[NLog.StructuredEvents]*" -target:"dotnet.exe" "-targetargs:test test\NLog.StructuredEvents.Tests" -returntargetcode -hideskipped:All -output:coverage.xml
77
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
88
- pip install codecov
99
- codecov -f "coverage.xml"

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
dotnet restore
2-
dotnet pack src\Parser -c release -o artifacts\
2+
dotnet pack src\NLog.StructuredEvents -c release -o artifacts\

run-tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
dotnet restore
2-
dotnet test test\Parser.Tests -c release
2+
dotnet test test\NLog.StructuredEvents.Tests -c release

src/Parser/Parser.xproj renamed to src/NLog.StructuredEvents/NLog.StructuredEvents.xproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,16 @@
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>58438ca4-c827-4e4b-a243-0bfbcd48a2dd</ProjectGuid>
11-
<RootNamespace>Parser</RootNamespace>
10+
<RootNamespace>NLog.StructuredEvents</RootNamespace>
1211
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
1312
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
1413
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1514
</PropertyGroup>
16-
1715
<PropertyGroup>
1816
<SchemaVersion>2.0</SchemaVersion>
1917
</PropertyGroup>
2018
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
21-
</Project>
19+
</Project>

src/Parser/Parts/CaptureType.cs renamed to src/NLog.StructuredEvents/Parts/CaptureType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Parser.Parts
1+
namespace NLog.StructuredEvents.Parts
22
{
33
public enum CaptureType : byte
44
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Parser.Parts
1+
namespace NLog.StructuredEvents.Parts
22
{
33
public struct Hole
44
{

src/Parser/Parts/Literal.cs renamed to src/NLog.StructuredEvents/Parts/Literal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Parser.Parts
1+
namespace NLog.StructuredEvents.Parts
22
{
33
public struct Literal
44
{

src/Parser/Properties/AssemblyInfo.cs renamed to src/NLog.StructuredEvents/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
// COM, set the ComVisible attribute to true on that type.
1717
[assembly: ComVisible(false)]
1818

19-
[assembly: InternalsVisibleTo("Parser.Tests")]
19+
[assembly: InternalsVisibleTo("NLog.StructuredEvents.Tests")]

0 commit comments

Comments
 (0)