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
28 changes: 0 additions & 28 deletions LICENSE.txt

This file was deleted.

6 changes: 3 additions & 3 deletions setup/SetupGithook.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ catch {

try {
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
$SourcePath = Join-Path -Path $ScriptDir -ChildPath "git\hooks\pre-commit"
$DestinationPath = Join-Path -Path $ScriptDir -ChildPath ".git\hooks\pre-commit"
$SourcePath = Join-Path -Path $ScriptDir -ChildPath "..\git\hooks\pre-commit"
$DestinationPath = Join-Path -Path $ScriptDir -ChildPath "..\.git\hooks\pre-commit"

Copy-Item -Path $SourcePath -Destination $DestinationPath -Force
icacls $DestinationPath /grant Everyone:F
Expand All @@ -17,4 +17,4 @@ try {
}
catch {
Write-Host "Error moving git hook: $_" -ForegroundColor Red
}
}
6 changes: 4 additions & 2 deletions src/ResxSorter/ResxSorter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>resxsort</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>

<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>

</PropertyGroup>

<ItemGroup>
Expand All @@ -22,7 +24,7 @@
</PackageReference>
<PackageReference Include="ZLogger" Version="2.5.10" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\ResxSorter.Core\ResxSorter.Core.csproj" />
</ItemGroup>
Expand Down
Loading