Death Socket consists of three projects. They are a .Net Standard 2.0 library, a console program and a Test Centre. The purpose of this repository is to provide a way for people to add grids to images. https://www.craigoates.net/Software/project/13
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
2.3 KiB

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>2.0.0.0</Version>
<Authors>Craig Oates</Authors>
<Product>Death Socket</Product>
<Description>A .Net Standard library which you can plug into to project and draw gridded overlays onto you images. Please note, Death Socket uses System.Drawing brushes and not System.Media brushes.</Description>
<PackageProjectUrl>https://git.abbether.net/craig.oates/Death-Socket</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<Company />
<Copyright>Craig Oates</Copyright>
<RepositoryUrl>https://git.abbether.net/craig.oates/Death-Socket</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>deathsocket grid image overlay f#</PackageTags>
<PackageReleaseNotes>A minor release. The change from 1.x to 2.x is to signify the changing of the projects versioning control system, from GitLab to git.abbether. The projects package information and its NuGet dependencies have been updated.</PackageReleaseNotes>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<PackageIconUrl></PackageIconUrl>
<FileVersion>2.0.0.0</FileVersion>
<DependsOnNETStandard>true</DependsOnNETStandard>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>death-socket-repo-logo.png</PackageIcon>
<NeutralLanguage>en-GB</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<Compile Include="Domain.fs" />
<Compile Include="ValidationServices.fs" />
<Compile Include="ColourServices.fs" />
<Compile Include="ImagePrep.fs" />
<Compile Include="ImageServices.fs" />
<Compile Include="GridPainter.fs" />
<None Include="..\..\..\_temp\death-socket-repo-logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="ScratchPad.fsx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Console.Waterworks" Version="2.0.0" />
<PackageReference Include="SkiaSharp" Version="1.60.3" />
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="4.7.0" />
</ItemGroup>
</Project>