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
2 changes: 2 additions & 0 deletions Make.config
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,8 @@ else
$(error "The variable XCODE_IS_STABLE is not set!")
endif
$(Q) printf "\t\t<TRACKING_DOTNET_RUNTIME_SEPARATELY>$(TRACKING_DOTNET_RUNTIME_SEPARATELY)</TRACKING_DOTNET_RUNTIME_SEPARATELY>\n" >> $@.tmp
$(Q) printf "\t\t<CURRENT_BRANCH>$(CURRENT_BRANCH)</CURRENT_BRANCH>\n" >> $@.tmp
$(Q) printf "\t\t<CURRENT_HASH_LONG>$(CURRENT_HASH_LONG)</CURRENT_HASH_LONG>\n" >> $@.tmp
$(Q) printf "\t</PropertyGroup>\n" >> $@.tmp
$(Q) printf "</Project>\n" >> $@.tmp
$(Q) mv $@.tmp $@
Expand Down
2 changes: 1 addition & 1 deletion tools/sharpie/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SHARPIE_BIND_TOOL_NUPKG=Sharpie.Bind.Tool/bin/Release/$(SHARPIE_BIND_TOOL_NUPKG_

pack: $(SHARPIE_BIND_TOOL_NUPKG)
$(SHARPIE_BIND_TOOL_NUPKG): $(Sharpie.Bind_dependencies)
$(Q_BUILD) $(DOTNET) pack Sharpie.Bind.Tool/Sharpie.Bind.Tool.csproj "/p:Version=$(SHARPIE_VERSION)" $(DOTNET_PACK_VERBOSITY) -bl:$@.binlog
$(Q_BUILD) $(DOTNET) pack Sharpie.Bind.Tool/Sharpie.Bind.Tool.csproj "/p:Version=$(SHARPIE_VERSION)" "/p:CurrentBranch=$(CURRENT_BRANCH)" "/p:CurrentHash=$(CURRENT_HASH_LONG)" $(DOTNET_PACK_VERBOSITY) -bl:$@.binlog

all-local:: $(DOTNET_NUPKG_DIR)/$(SHARPIE_BIND_TOOL_NUPKG_NAME)
$(DOTNET_NUPKG_DIR)/$(SHARPIE_BIND_TOOL_NUPKG_NAME): $(SHARPIE_BIND_TOOL_NUPKG)
Expand Down
11 changes: 11 additions & 0 deletions tools/sharpie/Sharpie.Bind.Tool/Sharpie.Bind.Tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,18 @@
<PublishAot>true</PublishAot>
<RollForward>major</RollForward>

<RepositoryUrl>https://github.com/dotnet/macios</RepositoryUrl>
<RepositoryBranch>$(CurrentBranch)</RepositoryBranch>
<RepositoryCommit>$(CurrentHash)</RepositoryCommit>

<Authors>Microsoft</Authors>
<Owners>microsoft,dotnetframework</Owners>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>Icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/dotnet/macios</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<ItemGroup>
Expand All @@ -34,6 +44,7 @@

<ItemGroup>
<None Include="../clang/include/**/*" Pack="true" PackagePath="content/clang/include" Link="clang/include" />
<None Include="../../../dotnet/package/Icon.png" Pack="true" PackagePath="/" />

<None Include="README.md" Pack="true" PackagePath="/"/>
<None Include="../../../LICENSE" Pack="true" PackagePath="/"/>
Expand Down
Loading