-
Notifications
You must be signed in to change notification settings - Fork 1
/
Impart.csproj
24 lines (24 loc) · 1.06 KB
/
Impart.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PackageId>Impart</PackageId>
<Version>2.0.7</Version>
<Authors>Pixelated_Lagg</Authors>
<Company>Pixelated_Lagg</Company>
<PackageIcon>logo.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateProgramFile>false</GenerateProgramFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>A C# library dedicated to streamlining web development by replacing HTML/CSS fluency with simple C# methods.</Description>
<RepositoryUrl>https://github.com/PixelatedLagg/Impart</RepositoryUrl>
<IsPackable>true</IsPackable>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
<DefineConstants>LOGGING</DefineConstants> <!--For logging-->
</PropertyGroup>
<ItemGroup>
<None Include=".github/Images/logo.png" Pack="true" PackagePath="logo.png"/>
</ItemGroup>
</Project>