-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDigital Rain.csproj
33 lines (28 loc) · 1.41 KB
/
Digital Rain.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Digital_Rain</RootNamespace>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- These settings don't work with Nuget packaging. Current solution is to manually disable with -p:{property}={value} (eg: dotnet pack -p:SelfContained=false -p:PublishSingleFile=false -p:PublishTrimmed=false) -->
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<SelfContained>true</SelfContained>
<DebugType>embedded</DebugType>
<PackAsTool>true</PackAsTool>
<ToolCommandName>csharpmatrix</ToolCommandName>
<PackageId>Squaduck.CSharpMatrix</PackageId>
<Version>1.2.0</Version>
<Authors>Squaduck</Authors>
<Product>C# Matrix</Product>
<Description>A basic, yet highly modifiable recreation of the digital rain effect from the matrix. Package named after the well-known cmatrix.</Description>
<PackageReadmeFile>NugetREADME.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Squaduck/Digital-Rain</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="NugetREADME.md" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>