-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alexander Reeder
authored and
Alexander Reeder
committed
Feb 21, 2022
1 parent
3beb5b5
commit 2415fb0
Showing
1 changed file
with
42 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,48 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>disable</Nullable> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Company>PeacePlaneStudios</Company> | ||
<Authors>Alexander Reeder</Authors> | ||
<Version>1.0.0</Version> | ||
<PackageProjectUrl>https://github.com/speedreeder/ScrabbleWordChecker</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/speedreeder/ScrabbleWordChecker.git</RepositoryUrl> | ||
<PackageTags>scrabble;boggle;dictionary;</PackageTags> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<Description>Tool to check words against the TWL and SOWPODS Scrabble dictionaries.</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="sowpods.txt" /> | ||
<None Remove="twl06.txt" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="sowpods.txt" /> | ||
<EmbeddedResource Include="twl06.txt" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\LICENSE.txt"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="sowpods.txt" /> | ||
<None Remove="twl06.txt" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="sowpods.txt" /> | ||
<EmbeddedResource Include="twl06.txt" /> | ||
</ItemGroup> | ||
|
||
</Project> |