Skip to content

Commit

Permalink
Make paths relative to repo root
Browse files Browse the repository at this point in the history
Signed-off-by: Alireza Poodineh <itsaeliux@gmail.com>
  • Loading branch information
Aeliux committed Oct 6, 2024
1 parent 05f6630 commit 9e481ec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/Kryptor.Cli/Kryptor.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Product>$(AssemblyTitle)</Product>
<Description>Command-Line Interface for Kryptor encryption engine.</Description>
<AssemblyName>kryptor</AssemblyName>
<ApplicationIcon>..\..\build\kryptor.ico</ApplicationIcon>
<ApplicationIcon>$(RepoRootPath)build\kryptor.ico</ApplicationIcon>
<PackageId>SAPTeam.Kryptor.Tool</PackageId>
<PackageTags>AES;KES;RSA;keystore;encrypt;decrypt;tool</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand All @@ -40,7 +40,7 @@
<Compile Remove="Wordlist\DownloadSession.cs" Condition="'$(Configuration)' == 'Light'" />
<Compile Remove="Wordlist\InstallSessionHost.cs" Condition="'$(Configuration)' == 'Light'" />
<Compile Remove="Wordlist\IndexSessionHost.cs" Condition="'$(Configuration)' == 'Light'" />
<Content Include="..\..\build\kryptor.ico" />
<Content Include="$(RepoRootPath)build\kryptor.ico" />
</ItemGroup>

<PropertyGroup>
Expand Down Expand Up @@ -83,6 +83,6 @@
</AssemblyAttribute>
</ItemGroup>

<Import Project="$(MSBuildThisFileDirectory)..\..\build\PackageLogo.props" />
<Import Project="$(RepoRootPath)build\PackageLogo.props" />

</Project>
2 changes: 1 addition & 1 deletion src/Kryptor.Client/Kryptor.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
<ProjectReference Include="..\Kryptor\Kryptor.csproj" />
</ItemGroup>

<Import Project="$(MSBuildThisFileDirectory)..\..\build\Library.props" />
<Import Project="$(RepoRootPath)build\Library.props" />

</Project>
6 changes: 3 additions & 3 deletions src/Kryptor/Kryptor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PackageId>$(AssemblyName)</PackageId>

<Title>Kryptor</Title>
<AssemblyTitle>Kryptor</AssemblyTitle>
<AssemblyTitle>Kryptor Engine</AssemblyTitle>
<Product>The Key-Based Encryption Engine.</Product>
<Description>This library allows you to encrypt data with keystore-based mechanisms.</Description>
<PackageTags>AES;KES;random;algorithm;transform;keystore;encrypt;decrypt</PackageTags>
Expand All @@ -21,7 +21,7 @@
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md">
<None Include="$(RepoRootPath)README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
Expand All @@ -39,6 +39,6 @@
<Compile Remove="Helpers\RuntimeHelpers.cs" />
</ItemGroup>

<Import Project="$(MSBuildThisFileDirectory)..\..\build\Library.props" />
<Import Project="$(RepoRootPath)build\Library.props" />

</Project>

0 comments on commit 9e481ec

Please sign in to comment.