This repository was archived by the owner on Feb 27, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ Task("__Test")
9191 Information ( "Tests goes here" ) ;
9292} ) ;
9393
94+ var author = "Henrik Andersson" ;
95+ var copyright = $ "Copyright \u00a9 { author } ";
9496Task ( "__Pack" )
9597 . Does ( ( ) => {
9698 DotNetCorePack ( Path . Combine ( "src" , "ScriptCs.Octokit" ) , new DotNetCorePackSettings
@@ -99,7 +101,12 @@ Task("__Pack")
99101 OutputDirectory = artifactsDir ,
100102 NoBuild = true ,
101103 NoRestore = true ,
102- ArgumentCustomization = args => args . Append ( $ "/p:Version={ nugetVersion } ")
104+ ArgumentCustomization = args =>
105+ args
106+ . Append ( $ "/p:Version={ nugetVersion } ")
107+ . Append ( $ "/p:Authors=\" { author } \" ")
108+ . Append ( $ "/p:Owners=\" { author } \" ")
109+ . Append ( $ "/p:Copyright=\" { copyright } \" ")
103110 } ) ;
104111} ) ;
105112
Original file line number Diff line number Diff line change 33 <TargetFramework >net45</TargetFramework >
44 <SolutionDir Condition =" $(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'" >..\</SolutionDir >
55 <AssemblyTitle >ScriptCs.Octokit</AssemblyTitle >
6- <Company >Henrik Andersson</Company >
76 <Product >ScriptCs.Octokit</Product >
87 <Description >Octokit Script Pack for ScriptCs.</Description >
9- <Copyright >Copyright � Henrik Andersson</Copyright >
8+ <Copyright >Copyright \u00a9 Henrik Andersson</Copyright >
109 <OutputPath >bin\$(Configuration)\</OutputPath >
1110 <PostBuildEvent />
1211 </PropertyGroup >
You can’t perform that action at this time.
0 commit comments