-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCLSEncoderDecoder.csproj
More file actions
20 lines (19 loc) · 918 Bytes
/
CLSEncoderDecoder.csproj
File metadata and controls
20 lines (19 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>CLSEncoderDecoder</Title>
<Authors>Equbuxu</Authors>
<Description>A simple encoder/decoder for Color Set files from Clip Studio Paint</Description>
<PackageProjectUrl>https://github.com/Equbuxu/CLSEncoderDecoder</PackageProjectUrl>
<RepositoryUrl>https://github.com/Equbuxu/CLSEncoderDecoder</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>