-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switched to using .NET6+ only to simplify things. Still dependent on …
…System.Drawing.Common for now though.
- Loading branch information
Lloyd Kinsella
committed
May 19, 2023
1 parent
34c1dd7
commit 93aab4e
Showing
10 changed files
with
105 additions
and
178 deletions.
There are no files selected for viewing
100 changes: 50 additions & 50 deletions
100
src/Workshell.PE.Resources/Workshell.PE.Resources.csproj
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 |
---|---|---|
@@ -1,55 +1,55 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<SignAssembly>false</SignAssembly> | ||
<AssemblyOriginatorKeyFile>Workshell.snk</AssemblyOriginatorKeyFile> | ||
<Configurations>Debug;Release;CI</Configurations> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>Workshell.PE.Resources</PackageId> | ||
<PackageDescription>A set of classes that extends the Workshell.PE class library to help deal with the standard resource types within an executable such as bitmaps, icons, cursors etc.</PackageDescription> | ||
<PackageProjectUrl>https://github.com/Workshell/pe</PackageProjectUrl> | ||
<PackageIconUrl>http://img.workshell.co.uk/logo_128.png</PackageIconUrl> | ||
<PackageTags>workshell pe executable native resources</PackageTags> | ||
<PackageLicenseFile>license.txt</PackageLicenseFile> | ||
<Copyright>Workshell Ltd</Copyright> | ||
<Authors>Workshell Ltd</Authors> | ||
<RepositoryUrl>https://github.com/Workshell/pe</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<Version>0.0.0.1</Version> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\..\license.txt" Pack="true" PackagePath="$(PackageLicenseFile)" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<OutputPath>..\..\bin\debug</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<OutputPath>..\..\bin\release</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net7.0;net6.0</TargetFrameworks> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<SignAssembly>false</SignAssembly> | ||
<AssemblyOriginatorKeyFile>Workshell.snk</AssemblyOriginatorKeyFile> | ||
<Configurations>Debug;Release;CI</Configurations> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>Workshell.PE.Resources</PackageId> | ||
<PackageDescription>A set of classes that extends the Workshell.PE class library to help deal with the standard resource types within an executable such as bitmaps, icons, cursors etc.</PackageDescription> | ||
<PackageProjectUrl>https://github.com/Workshell/pe</PackageProjectUrl> | ||
<PackageIconUrl>http://img.workshell.co.uk/logo_128.png</PackageIconUrl> | ||
<PackageTags>workshell pe executable native resources</PackageTags> | ||
<PackageLicenseFile>license.txt</PackageLicenseFile> | ||
<Copyright>Workshell Ltd</Copyright> | ||
<Authors>Workshell Ltd</Authors> | ||
<RepositoryUrl>https://github.com/Workshell/pe</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<Version>0.0.0.1</Version> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\..\license.txt" Pack="true" PackagePath="$(PackageLicenseFile)" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<OutputPath>..\..\bin\debug</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<OutputPath>..\..\bin\release</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CI|AnyCPU'"> | ||
<OutputPath>..\..\bin\ci</OutputPath> | ||
<DefineConstants>TRACE;SIGNED</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\CommonAssemblyInfo.cs" Link="Properties\CommonAssemblyInfo.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="System.Drawing.Common" Version="4.6.0" /> | ||
</ItemGroup> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\CommonAssemblyInfo.cs" Link="Properties\CommonAssemblyInfo.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Drawing.Common" Version="7.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Workshell.PE\Workshell.PE.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</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
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.