-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Samir L. Boulema
committed
Aug 4, 2021
1 parent
9183769
commit 08b3ade
Showing
1 changed file
with
379 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,379 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0"> | ||
<PropertyGroup> | ||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
<FileUpgradeFlags> | ||
</FileUpgradeFlags> | ||
<UpgradeBackupLocation> | ||
</UpgradeBackupLocation> | ||
<OldToolsVersion>12.0</OldToolsVersion> | ||
<PublishUrl>publish\</PublishUrl> | ||
<Install>true</Install> | ||
<InstallFrom>Disk</InstallFrom> | ||
<UpdateEnabled>false</UpdateEnabled> | ||
<UpdateMode>Foreground</UpdateMode> | ||
<UpdateInterval>7</UpdateInterval> | ||
<UpdateIntervalUnits>Days</UpdateIntervalUnits> | ||
<UpdatePeriodically>false</UpdatePeriodically> | ||
<UpdateRequired>false</UpdateRequired> | ||
<MapFileExtensions>true</MapFileExtensions> | ||
<ApplicationRevision>0</ApplicationRevision> | ||
<ApplicationVersion>1.0.0.%2a</ApplicationVersion> | ||
<IsWebBootstrapper>false</IsWebBootstrapper> | ||
<UseApplicationTrust>false</UseApplicationTrust> | ||
<BootstrapperEnabled>true</BootstrapperEnabled> | ||
<NuGetPackageImportStamp> | ||
</NuGetPackageImportStamp> | ||
<TargetFrameworkProfile /> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ApplicationManifest>Images.imagemanifest</ApplicationManifest> | ||
</PropertyGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{22376990-61FD-4AF5-856C-004CEA4E77EC}</ProjectGuid> | ||
<ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>SamirBoulema.TGit</RootNamespace> | ||
<AssemblyName>TGit</AssemblyName> | ||
<SignAssembly>True</SignAssembly> | ||
<AssemblyOriginatorKeyFile> | ||
</AssemblyOriginatorKeyFile> | ||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DeployExtension Condition=" '$(AppVeyor)' != '' Or '$(TF_BUILD)' != '' ">False</DeployExtension> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<RunCodeAnalysis>false</RunCodeAnalysis> | ||
<DeployExtension Condition=" '$(AppVeyor)' != '' Or '$(TF_BUILD)' != '' ">False</DeployExtension> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="Microsoft.VisualBasic" /> | ||
<Reference Include="PresentationCore" /> | ||
<Reference Include="PresentationFramework" /> | ||
<Reference Include="System" /> | ||
<Reference Include="System.ComponentModel.Composition" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Design" /> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="System.Runtime.Caching" /> | ||
<Reference Include="System.Transactions" /> | ||
<Reference Include="System.Windows.Forms" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="UIAutomationTypes" /> | ||
<Reference Include="WindowsBase" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Commands\GitFlow\GitFlowFinishHotfixCommand.cs" /> | ||
<Compile Include="Commands\GitFlow\GitFlowFinishReleaseCommand.cs" /> | ||
<Compile Include="Commands\GitFlow\GitFlowFinishFeatureCommand.cs" /> | ||
<Compile Include="Commands\GitFlow\GitFlowFinishFeatureGitHubCommand.cs" /> | ||
<Compile Include="Commands\GitFlow\GitFlowStartHotfixCommand.cs" /> | ||
<Compile Include="Commands\GitFlow\GitFlowStartReleaseCommand.cs" /> | ||
<Compile Include="Commands\GitFlow\GitFlowStartFeatureGitHubCommand.cs" /> | ||
<Compile Include="Commands\GitFlow\GitFlowStartFeatureCommand.cs" /> | ||
<Compile Include="Commands\GitFlow\GitFlowInitCommand.cs" /> | ||
<Compile Include="Commands\SVN\SVNRebaseCommand.cs" /> | ||
<Compile Include="Commands\SVN\SVNFetchCommand.cs" /> | ||
<Compile Include="Commands\SVN\SVNDCommitCommand.cs" /> | ||
<Compile Include="Commands\Context\BlameFileCommand.cs" /> | ||
<Compile Include="Commands\Context\CommitFileCommand.cs" /> | ||
<Compile Include="Commands\Context\PrefDiffFileCommand.cs" /> | ||
<Compile Include="Commands\Context\DiffFileCommand.cs" /> | ||
<Compile Include="Commands\Context\RevertFileCommand.cs" /> | ||
<Compile Include="Commands\Context\FetchFileCommand.cs" /> | ||
<Compile Include="Commands\Context\DeleteKeepFileCommand.cs" /> | ||
<Compile Include="Commands\Context\DeleteFileCommand.cs" /> | ||
<Compile Include="Commands\Context\DiskBrowserFileCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\AbortMergeCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\BrowseRefCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\CleanupCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\SyncCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\TagCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\ResolveCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\RevertCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\RebaseCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\MergeCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\SwitchCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\BranchCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\StashPopCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\CommitCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\ApplyStashCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\CreateStashCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\RevGraphCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\RepoBrowserCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\DiskBrowserCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\ShowLogCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\PushCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\FetchCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\PullCommand.cs" /> | ||
<Compile Include="Commands\MainMenu\ShowChangesCommand.cs" /> | ||
<Compile Include="Commands\Context\MergeFileCommand.cs" /> | ||
<Compile Include="Commands\Context\AddFileCommand.cs" /> | ||
<Compile Include="Commands\Context\PullFileCommand.cs" /> | ||
<Compile Include="Commands\Context\RepoBrowserFileCommand.cs" /> | ||
<Compile Include="Commands\Context\RevGraphFileCommand.cs" /> | ||
<Compile Include="Commands\Context\ShowLogFileCommand.cs" /> | ||
<Compile Include="FlowDialog.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Include="FlowDialog.Designer.cs"> | ||
<DependentUpon>FlowDialog.cs</DependentUpon> | ||
</Compile> | ||
<Compile Include="Credentials.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Include="Credentials.Designer.cs"> | ||
<DependentUpon>Credentials.cs</DependentUpon> | ||
</Compile> | ||
<Compile Include="Models\GitConfig.cs" /> | ||
<Compile Include="Helpers\CommandHelper.cs" /> | ||
<Compile Include="Helpers\FileHelper.cs" /> | ||
<Compile Include="Helpers\GitHelper.cs" /> | ||
<Compile Include="Helpers\ProcessHelper.cs" /> | ||
<Compile Include="Options\General.cs" /> | ||
<Compile Include="OutputBox.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Include="OutputBox.Designer.cs"> | ||
<DependentUpon>OutputBox.cs</DependentUpon> | ||
</Compile> | ||
<Compile Include="Resources.Designer.cs"> | ||
<AutoGen>True</AutoGen> | ||
<DesignTime>True</DesignTime> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
<Compile Include="Extensions\RichTextBoxExtension.cs" /> | ||
<Compile Include="TGit.cs"> | ||
<AutoGen>True</AutoGen> | ||
<DesignTime>True</DesignTime> | ||
<DependentUpon>TGit.vsct</DependentUpon> | ||
</Compile> | ||
<Compile Include="TGitPackage.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="FlowDialog.resx"> | ||
<DependentUpon>FlowDialog.cs</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="Credentials.resx"> | ||
<DependentUpon>Credentials.cs</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="OutputBox.resx"> | ||
<DependentUpon>OutputBox.cs</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="Resources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
<SubType>Designer</SubType> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="VSPackage.resx"> | ||
<MergeWithCTO>true</MergeWithCTO> | ||
<ManifestResourceName>VSPackage</ManifestResourceName> | ||
<SubType>Designer</SubType> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="IconMappings.csv"> | ||
<IncludeInVSIX>true</IncludeInVSIX> | ||
</Content> | ||
<Content Include="Images.imagemanifest"> | ||
<IncludeInVSIX>true</IncludeInVSIX> | ||
<SubType>Designer</SubType> | ||
</Content> | ||
<None Include="..\.editorconfig"> | ||
<Link>.editorconfig</Link> | ||
</None> | ||
<None Include="source.extension.vsixmanifest"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<VSCTCompile Include="TGit.vsct"> | ||
<ResourceName>Menus.ctmenu</ResourceName> | ||
<SubType>Designer</SubType> | ||
<Generator>VsctGenerator</Generator> | ||
<LastGenOutput>TGit.cs</LastGenOutput> | ||
</VSCTCompile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Resource Include="Resources\octicons.png" /> | ||
<Content Include="Resources\License.txt"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<IncludeInVSIX>true</IncludeInVSIX> | ||
</Content> | ||
<Content Include="Resources\Package.ico"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<IncludeInVSIX>true</IncludeInVSIX> | ||
</Content> | ||
<Content Include="Resources\Preview.jpg"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<IncludeInVSIX>true</IncludeInVSIX> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<BootstrapperPackage Include=".NETFramework,Version=v4.5"> | ||
<Visible>False</Visible> | ||
<ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName> | ||
<Install>true</Install> | ||
</BootstrapperPackage> | ||
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> | ||
<Visible>False</Visible> | ||
<ProductName>.NET Framework 3.5 SP1</ProductName> | ||
<Install>false</Install> | ||
</BootstrapperPackage> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Page Include="Resources\Images\Add.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Config.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\AbortMerge.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Cleanup.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\RevGraph.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Stash.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Rebase.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Tag.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Switch.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Disk.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Commit.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\BrowseRef.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Sync.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Resolve.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Repo.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Differences.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Blame.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Merge.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Revert.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\ShowLog.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Push.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Fetch.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Pull.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\ShowChanges.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Resources\Images\Branch.xaml"> | ||
<SubType>Designer</SubType> | ||
<Generator>MSBuild:Compile</Generator> | ||
</Page> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Community.VisualStudio.Toolkit"> | ||
<Version>15.0.76.257-pre</Version> | ||
</PackageReference> | ||
<PackageReference Include="Community.VisualStudio.VSCT"> | ||
<Version>16.0.29.6</Version> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.VSSDK.BuildTools"> | ||
<Version>17.0.3177-preview3</Version> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<UseCodebase>true</UseCodebase> | ||
</PropertyGroup> | ||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | ||
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |