Skip to content

Commit 6a106f7

Browse files
committed
Check in codegen as LKG
1 parent 514282c commit 6a106f7

File tree

7 files changed

+2
-23
lines changed

7 files changed

+2
-23
lines changed

Directory.Build.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
55

66
<CodeGenerationRoslynVersion>0.3.12-gc4f1afd3b7</CodeGenerationRoslynVersion>
7-
<CodeGeneratorConfiguration Condition=" '$(CodeGeneratorConfiguration)' == '' ">Debug</CodeGeneratorConfiguration>
87
</PropertyGroup>
98

109
<ItemGroup>

LibGit2Sharp.sln

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.26407.1
@@ -12,8 +12,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LibGit2Sharp.Tests", "LibGi
1212
EndProject
1313
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeGenerationAttributes", "CodeGenerationAttributes\CodeGenerationAttributes.csproj", "{E1A8B99F-B2F6-4A38-9DF6-8792056D70FF}"
1414
EndProject
15-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeGeneration", "CodeGeneration\CodeGeneration.csproj", "{6598997B-9419-4CC1-84FF-9621B555E9C0}"
16-
EndProject
1715
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0CA739FD-DA4D-4F64-9834-DA14A3ECD04B}"
1816
ProjectSection(SolutionItems) = preProject
1917
.gitignore = .gitignore
@@ -22,8 +20,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2220
version.json = version.json
2321
EndProjectSection
2422
EndProject
25-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeGeneration.Debugging", "CodeGeneration.Debugging\CodeGeneration.Debugging.csproj", "{C9212ECC-76F0-4658-9C89-DD506EE788B5}"
26-
EndProject
2723
Global
2824
GlobalSection(SharedMSBuildProjectFiles) = preSolution
2925
LibGit2Sharp.Tests.Shared\LibGit2Sharp.Tests.Shared.projitems*{286e63eb-04dd-4ade-88d6-041b57800761}*SharedItemsImports = 4
@@ -47,14 +43,6 @@ Global
4743
{E1A8B99F-B2F6-4A38-9DF6-8792056D70FF}.Debug|Any CPU.Build.0 = Debug|Any CPU
4844
{E1A8B99F-B2F6-4A38-9DF6-8792056D70FF}.Release|Any CPU.ActiveCfg = Release|Any CPU
4945
{E1A8B99F-B2F6-4A38-9DF6-8792056D70FF}.Release|Any CPU.Build.0 = Release|Any CPU
50-
{6598997B-9419-4CC1-84FF-9621B555E9C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
51-
{6598997B-9419-4CC1-84FF-9621B555E9C0}.Debug|Any CPU.Build.0 = Debug|Any CPU
52-
{6598997B-9419-4CC1-84FF-9621B555E9C0}.Release|Any CPU.ActiveCfg = Release|Any CPU
53-
{6598997B-9419-4CC1-84FF-9621B555E9C0}.Release|Any CPU.Build.0 = Release|Any CPU
54-
{C9212ECC-76F0-4658-9C89-DD506EE788B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
55-
{C9212ECC-76F0-4658-9C89-DD506EE788B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
56-
{C9212ECC-76F0-4658-9C89-DD506EE788B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
57-
{C9212ECC-76F0-4658-9C89-DD506EE788B5}.Release|Any CPU.Build.0 = Release|Any CPU
5846
EndGlobalSection
5947
GlobalSection(SolutionProperties) = preSolution
6048
HideSolutionNode = FALSE

LibGit2Sharp/CodeGenerator.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project InitialTargets="GenerateCodeFirst">
33
<PropertyGroup>
4-
<CodeGenerationOutputPath>$(MSBuildProjectDirectory)\..\bin\CodeGeneration\$(CodeGeneratorConfiguration)\netstandard1.5\</CodeGenerationOutputPath>
4+
<CodeGenerationOutputPath>$(MSBuildProjectDirectory)\..\lkg\</CodeGenerationOutputPath>
55
</PropertyGroup>
66

77
<ItemGroup>

appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ before_build:
7878
7979
build_script:
8080
- ps: |
81-
msbuild "$Env:APPVEYOR_BUILD_FOLDER\CodeGeneration\CodeGeneration.csproj" `
82-
/nologo /verbosity:minimal /fl /flp:verbosity=normal
8381
msbuild "$Env:APPVEYOR_BUILD_FOLDER\LibGit2Sharp.sln" `
8482
/nologo /verbosity:minimal /fl /flp:verbosity=normal `
8583
/property:ExtraDefine="LEAKS_IDENTIFYING" `

build.libgit2sharp.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@ export LD_LIBRARY_PATH=.
1111

1212
# Build release for the code generator and the product itself.
1313
export Configuration=release
14-
export CodeGeneratorConfiguration=release
15-
16-
# Build CodeGeneration first. See CodeGenerator.targets for why this has to be
17-
# a preliminary step.
18-
dotnet restore CodeGeneration
19-
dotnet build CodeGeneration
2014

2115
# On linux we don't pack because we can't build for net40.
2216
# We just build for CoreCLR and run tests for it.

lkg/CodeGeneration.dll

20 KB
Binary file not shown.

lkg/CodeGeneration.pdb

2.89 KB
Binary file not shown.

0 commit comments

Comments
 (0)