-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTerminalEngine.csproj
34 lines (31 loc) · 1.23 KB
/
TerminalEngine.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
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Title>Terminal Engine</Title>
<Authors>JBros Development</Authors>
<Description>An engine to make it easy to use the console as a way of displaying pixels</Description>
<Copyright>MIT License</Copyright>
<PackageProjectUrl>https://github.com/JBrosDevelopment/TerminalEngine.git</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/JBrosDevelopment/TerminalEngine.git</RepositoryUrl>
<RepositoryType></RepositoryType>
<PackageTags>csharp;engine;console;canvas;display;pixels;terminal;cmd</PackageTags>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Version>1.0.2</Version>
</PropertyGroup>
<ItemGroup>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>