|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <!-- Pack as .nupkg with dependency on GitExtensions.Extensibility --> |
4 | | - <PropertyGroup> |
5 | | - <TargetFramework>net10.0-windows</TargetFramework> |
6 | | - <UseWindowsForms>true</UseWindowsForms> |
7 | | - <NuspecFile>$(MSBuildThisFileDirectory)$(MSBuildProjectName).nuspec</NuspecFile> |
8 | | - <Authors>YOUR NAME HERE</Authors> |
9 | | - <Company>YOUR ORGANIZATION HERE</Company> |
10 | | - <Description>A template for Git Extensions plugins distributed as NuGet packages.</Description> |
11 | | - <PackageProjectUrl>https://github.com/gitextensions/gitextensions.plugintemplate</PackageProjectUrl> |
12 | | - <PackageTags>GitExtensions</PackageTags> |
13 | | - <GeneratePackageOnBuild>false</GeneratePackageOnBuild> |
14 | | - <!-- Assembly binding redirect for WindowsBase compatibility --> |
15 | | - <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> |
16 | | - <!-- Suppress assembly binding resolution warnings for version mismatches --> |
17 | | - <WarningLevel>3</WarningLevel> |
18 | | - <NoWarn>$(NoWarn);MSB3277</NoWarn> |
19 | | - </PropertyGroup> |
| 3 | + <!-- Pack as .nupkg with dependency on GitExtensions.Extensibility --> |
| 4 | + <PropertyGroup> |
| 5 | + <TargetFramework>net10.0-windows</TargetFramework> |
| 6 | + <UseWindowsForms>true</UseWindowsForms> |
| 7 | + <NuspecFile>$(MSBuildThisFileDirectory)$(MSBuildProjectName).nuspec</NuspecFile> |
| 8 | + <Authors>YOUR NAME HERE</Authors> |
| 9 | + <Company>YOUR ORGANIZATION HERE</Company> |
| 10 | + <Description>A template for Git Extensions plugins distributed as NuGet packages.</Description> |
| 11 | + <PackageProjectUrl>https://github.com/gitextensions/gitextensions.plugintemplate</PackageProjectUrl> |
| 12 | + <PackageTags>GitExtensions</PackageTags> |
| 13 | + <GeneratePackageOnBuild>false</GeneratePackageOnBuild> |
| 14 | + <!-- Assembly binding redirect for WindowsBase compatibility --> |
| 15 | + <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> |
| 16 | + <!-- Suppress assembly binding resolution warnings for version mismatches --> |
| 17 | + <WarningLevel>3</WarningLevel> |
| 18 | + <NoWarn>$(NoWarn);MSB3277</NoWarn> |
| 19 | + </PropertyGroup> |
20 | 20 |
|
21 | | - <!-- References to Git Extensions' DLLs --> |
22 | | - <!-- PackageReference triggers the MSBuild targets that download GE before build --> |
23 | | - <ItemGroup> |
24 | | - <PackageReference Include="GitExtensions.Extensibility" /> |
25 | | - <Reference Include="GitExtensions.Extensibility"> |
26 | | - <HintPath>$(GitExtensionsPath)\GitExtensions.Extensibility.dll</HintPath> |
27 | | - </Reference> |
28 | | - <Reference Include="GitUIPluginInterfaces"> |
29 | | - <HintPath>$(GitExtensionsPath)\GitUIPluginInterfaces.dll</HintPath> |
30 | | - </Reference> |
31 | | - <Reference Include="ResourceManager"> |
32 | | - <HintPath>$(GitExtensionsPath)\ResourceManager.dll</HintPath> |
33 | | - </Reference> |
34 | | - <PackageReference Include="System.ComponentModel.Composition" /> |
35 | | - <Reference Include="GitCommands"> |
36 | | - <HintPath>$(GitExtensionsPath)\GitCommands.dll</HintPath> |
37 | | - </Reference> |
38 | | - </ItemGroup> |
| 21 | + <!-- References to Git Extensions' DLLs --> |
| 22 | + <!-- PackageReference triggers the MSBuild targets that download GE before build --> |
| 23 | + <ItemGroup> |
| 24 | + <PackageReference Include="GitExtensions.Extensibility" /> |
| 25 | + <Reference Include="GitExtensions.Extensibility"> |
| 26 | + <HintPath>$(GitExtensionsPath)\GitExtensions.Extensibility.dll</HintPath> |
| 27 | + </Reference> |
| 28 | + <Reference Include="GitUIPluginInterfaces"> |
| 29 | + <HintPath>$(GitExtensionsPath)\GitUIPluginInterfaces.dll</HintPath> |
| 30 | + </Reference> |
| 31 | + <Reference Include="ResourceManager"> |
| 32 | + <HintPath>$(GitExtensionsPath)\ResourceManager.dll</HintPath> |
| 33 | + </Reference> |
| 34 | + <PackageReference Include="System.ComponentModel.Composition" /> |
| 35 | + <Reference Include="GitCommands"> |
| 36 | + <HintPath>$(GitExtensionsPath)\GitCommands.dll</HintPath> |
| 37 | + </Reference> |
| 38 | + </ItemGroup> |
39 | 39 |
|
40 | | - <ItemGroup> |
| 40 | + <ItemGroup> |
41 | 41 | <Compile Update="Properties\Resources.Designer.cs"> |
42 | 42 | <DesignTime>True</DesignTime> |
43 | 43 | <AutoGen>True</AutoGen> |
|
0 commit comments