Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@
<BaseOutputPath>$(ArtifactsPath)bin/$(MSBuildProjectName)/</BaseOutputPath>
<BaseIntermediateOutputPath>$(ArtifactsPath)obj/$(MSBuildProjectName)/</BaseIntermediateOutputPath>

<!-- Version - single source for all packages -->
<Version>1.17.0</Version>
<!-- Version: CI stamps via -p:Version=$VERSION at pack time from the v* tag (a global
property, beats anything set here). Locally we compose a placeholder so packs
still produce a valid .nupkg; matches the Roslyn.Utilities / Agents convention.
The self-referenced last-PUBLISHED $(ANcpLuaAnalyzersVersion) lives in Version.props
(imported via Directory.Packages.props, which loads AFTER this file) and is what
restore-time PackageReferences resolve against — keep it separate from this dev pin. -->
<VersionPrefix Condition="'$(VersionPrefix)' == ''">0.0.1</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''">local</VersionSuffix>
<Version Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</Version>
<Version Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</Version>

<!-- Package metadata -->
<Authors>Alexander Nachtmann</Authors>
Expand Down
6 changes: 3 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"allowPrerelease": true
},
"msbuild-sdks": {
"ANcpLua.NET.Sdk": "3.4.20",
"ANcpLua.NET.Sdk.Web": "3.4.20",
"ANcpLua.NET.Sdk.Test": "3.4.20",
"ANcpLua.NET.Sdk": "3.4.21",
"ANcpLua.NET.Sdk.Web": "3.4.21",
"ANcpLua.NET.Sdk.Test": "3.4.21",
"ANcpLua.Roslyn.Utilities.Testing": "2.2.10",
"ANcpLua.Roslyn.Utilities": "2.2.10"
},
Expand Down
Loading