Skip to content

Commit

Permalink
⬆️ Bump files with dotnet-file sync
Browse files Browse the repository at this point in the history
# devlooped/oss

- Add RepositoryBranch as a ThisAssembly.Project property devlooped/oss@83d7378
- Global tools should run on whatever latest runtime is installed. devlooped/oss@b65c8f1
- Ensure MSBuild tooling can access package artifacts always via PKG_[PackageId] devlooped/oss@cc6922f
  • Loading branch information
kzu committed Nov 13, 2021
1 parent 036cbac commit d4c139d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .netconfig
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@
weak
[file "src/Directory.Build.props"]
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.props
sha = e2606657b68d2980cc3cae181c59baa3d847ab75
etag = a44fa4e71022b1c5f9684ec65815f69b47d51d0289e58bd9396606bd88e4244a
sha = cc6922f63e2bd520a75f46592cfb38cec02aaccd
etag = 743fd7845e40d9aef662f858a2d48dbfec9a10977e15394f45e331841a3c0dfd
weak
[file "src/Directory.Build.targets"]
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.targets
sha = bfe0f2a2a668878931f43b7280f0406a2171ff0c
etag = 46287392cb21e28595b1ea658236b8afa15f985c9f75dc08ed85e81a2c465755
sha = 83d73781f82a05b805c98b70219c32a47c096fbe
etag = 7b62ae495bdfb2dcca473709323ab0d5cf2bb7637e7bff3250ae9267839069ef
weak
[file "src/kzu.snk"]
url = https://github.com/devlooped/oss/blob/main/src/kzu.snk
Expand Down
6 changes: 6 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
<!-- Use Directory.Packages.props if possible. NOTE: other MSBuild SDKs (i.e. NoTargets/Traversal) do not support central packages -->
<ManagePackageVersionsCentrally Condition="Exists('$(MSBuildThisFileDirectory)Directory.Packages.props') AND ('$(MSBuildProjectExtension)' == '.csproj' OR '$(MSBuildProjectExtension)' == '.vbproj')">true</ManagePackageVersionsCentrally>
<RestoreSources>https://api.nuget.org/v3/index.json;https://pkg.kzu.io/index.json;$(RestoreSources)</RestoreSources>

<!-- Ensure MSBuild tooling can access package artifacts always via PKG_[PackageId] -->
<GeneratePathProperty>true</GeneratePathProperty>
</PropertyGroup>

<PropertyGroup Label="Build">
Expand Down Expand Up @@ -80,6 +83,9 @@

<!-- Preserve transitively copied content in VS: https://github.com/dotnet/msbuild/issues/1054#issuecomment-847959047 -->
<MSBuildCopyContentTransitively>true</MSBuildCopyContentTransitively>

<!-- Global tools should run on whatever latest runtime is installed. See https://docs.microsoft.com/en-us/dotnet/core/versions/selection#framework-dependent-apps-roll-forward -->
<RollForward>LatestMinor</RollForward>
</PropertyGroup>

<PropertyGroup Label="StrongName" Condition="Exists('$(MSBuildThisFileDirectory)kzu.snk')">
Expand Down
1 change: 1 addition & 0 deletions src/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@

<ItemGroup>
<!-- Make these available via ThisAssembly.Project -->
<ProjectProperty Include="RepositoryBranch" />
<ProjectProperty Include="RepositorySha" />
<ProjectProperty Include="RepositoryCommit" />
</ItemGroup>
Expand Down

0 comments on commit d4c139d

Please sign in to comment.