-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into Fix.Windows7
- Loading branch information
Showing
6 changed files
with
139 additions
and
68 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
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,40 @@ | ||
<Project Sdk="Microsoft.NET.Sdk" DefaultTargets="Pack"> | ||
|
||
<PropertyGroup> | ||
<Version>1.0.0.0</Version> | ||
<Company>Gerardo Grignoli</Company> | ||
<Authors>Gerardo Grignoli</Authors> | ||
<PackageId>gsudo</PackageId> | ||
<PackageTags>gsudo;sudo;runas</PackageTags> | ||
<Description>gsudo is a sudo for Windows, allows to run commands with elevated permissions in the current console.</Description> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<NoBuild>true</NoBuild> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<IncludeSymbols>false</IncludeSymbols> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackFrameworkReferences>false</PackFrameworkReferences> | ||
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking> | ||
<Copyright>Gerardo Grignoli and GitHub Contributors</Copyright> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/gerardog/gsudo</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/gerardog/gsudo</RepositoryUrl> | ||
<RepositoryType>GIT</RepositoryType> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="$(MSBuildThisFileDirectory)\..\..\artifacts\net46-AnyCpu\gsudo.exe" Pack="true"> | ||
<PackagePath>runtimes\win-anycpu\native\gsudo.exe</PackagePath> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)\..\..\artifacts\x86\gsudo.exe" Pack="true"> | ||
<PackagePath>runtimes\win-x86\native\gsudo.exe</PackagePath> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)\..\..\artifacts\x64\gsudo.exe" Pack="true"> | ||
<PackagePath>runtimes\win-x64\native\gsudo.exe</PackagePath> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)\..\..\artifacts\arm64\gsudo.exe" Pack="true"> | ||
<PackagePath>runtimes\win-arm64\native\gsudo.exe</PackagePath> | ||
</Content> | ||
<Content Include="gsudo.targets" PackagePath="build/gsudo.targets" Pack="true" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
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,33 @@ | ||
<?xml version="1.0"?> | ||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Content Include="$(MSBuildThisFileDirectory)\..\runtimes\win-anycpu\native\gsudo.exe"> | ||
<Link>gsudo.exe</Link> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PublishState>Included</PublishState> | ||
<Visible>false</Visible> | ||
<Pack>false</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)\..\runtimes\win-x86\native\gsudo.exe"> | ||
<Link>runtimes\win-x86\native\gsudo.exe</Link> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PublishState>Included</PublishState> | ||
<Visible>false</Visible> | ||
<Pack>false</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)\..\runtimes\win-x64\native\gsudo.exe"> | ||
<Link>runtimes\win-x64\native\gsudo.exe</Link> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PublishState>Included</PublishState> | ||
<Visible>false</Visible> | ||
<Pack>false</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)\..\runtimes\win-arm64\native\gsudo.exe"> | ||
<Link>runtimes\win-arm64\native\gsudo.exe</Link> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PublishState>Included</PublishState> | ||
<Visible>false</Visible> | ||
<Pack>false</Pack> | ||
</Content> | ||
</ItemGroup> | ||
</Project> |
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
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