-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWordle.NET.csproj
33 lines (29 loc) · 1016 Bytes
/
Wordle.NET.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>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>wordle</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageId>Wordle.NET</PackageId>
<Version>1.0.1</Version>
<Authors>Nouman Rahman</Authors>
<Company>ProgrammingFire</Company>
<PackageTags>Console;Terminal;Game;App</PackageTags>
<Description>
Wordle For Terminals
</Description>
<RepositoryUrl>https://github.com/ProgrammingFire/Wordle.NET</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Compile Remove="nupkg\**" />
<EmbeddedResource Remove="nupkg\**" />
<None Remove="nupkg\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.44.0" />
<None Include="words.json" CopyToOutputDirectory="Always" />
</ItemGroup>
</Project>