You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- The following properties may be overwritten by plugins. In case they are not defined, they assume default values. -->
3
+
<PropertyGroup>
4
+
<GitExtensionsDownloadPathCondition="$(GitExtensionsDownloadPath) == ''">..\..\gitextensions.shared</GitExtensionsDownloadPath> <!-- path is relative to $(ProjectDir) -->
5
+
<GitExtensionsReferenceVersionCondition="$(GitExtensionsReferenceVersion) == ''">latest</GitExtensionsReferenceVersion> <!-- 'latest' or 'v3.1' (= tag from GitHub releases) or 'v3.1.0.5877' (= build number from AppVeyor)-->
6
+
<GitExtensionsReferenceSourceCondition="$(GitExtensionsReferenceSource) == ''">GitHub</GitExtensionsReferenceSource> <!-- 'GitHub' or 'AppYevor' -->
7
+
<GitExtensionsPathCondition="$(GitExtensionsPath) == ''">$([System.IO.Path]::Combine('$(ProjectDir)', '$(GitExtensionsDownloadPath)', 'GitExtensions'))</GitExtensionsPath> <!-- for local builds (no download) -->
8
+
</PropertyGroup>
9
+
10
+
<!-- The following properties are derived from the above ones. All of them necessitate absolute paths. -->
11
+
<!-- Plugins are supposed to consume them "read-only". -->
2
12
<PropertyGroup>
3
-
<!-- It's required to pass absolute paths to the PS1 script, otherwise it's based wrong. -->
<ErrorCondition="!Exists($(GitExtensionsExecutablePath)) and !Exists($(_GitExtensionsDownloadScriptPath))"Text="Path to Git Extensions portable download script is wrong. Current value '$(_GitExtensionsDownloadScriptPath)'." />
0 commit comments