forked from stephenhaunts/ProfanityDetector
-
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.
Changing root namespace so it isn't the same as the class name to fix s…
- Loading branch information
Showing
11 changed files
with
83 additions
and
76 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
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
56 changes: 28 additions & 28 deletions
56
...ts.Unit/ProfanityFilter.Tests.Unit.csproj → ....Unit/ProfanityDetector.Tests.Unit.csproj
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,28 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.2</TargetFramework> | ||
|
||
<IsPackable>false</IsPackable> | ||
<ReleaseVersion>0.1.2</ReleaseVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<NoStdLib>true</NoStdLib> | ||
<WarningsNotAsErrors></WarningsNotAsErrors> | ||
<Optimize>true</Optimize> | ||
<NoStdLib>true</NoStdLib> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" /> | ||
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\ProfanityFilter\ProfanityFilter\ProfanityFilter.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove=".DS_Store" /> | ||
</ItemGroup> | ||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.2</TargetFramework> | ||
|
||
<IsPackable>false</IsPackable> | ||
<ReleaseVersion>0.1.2</ReleaseVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<NoStdLib>true</NoStdLib> | ||
<WarningsNotAsErrors></WarningsNotAsErrors> | ||
<Optimize>true</Optimize> | ||
<NoStdLib>true</NoStdLib> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" /> | ||
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\ProfanityFilter\ProfanityFilter\ProfanityDetector.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove=".DS_Store" /> | ||
</ItemGroup> | ||
</Project> |
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
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
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
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
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
59 changes: 30 additions & 29 deletions
59
...er/ProfanityFilter/ProfanityFilter.csproj → .../ProfanityFilter/ProfanityDetector.csproj
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,29 +1,30 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<PackOnBuild>true</PackOnBuild> | ||
<PackageId>Profanity.Detector</PackageId> | ||
<PackageVersion>0.1.8</PackageVersion> | ||
<Authors>Stephen Haunts</Authors> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<PackageLicenseUrl>https://github.com/stephenhaunts/ProfanityDetector/blob/master/LICENSE</PackageLicenseUrl> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Owners>Stephen Haunts</Owners> | ||
<PackageProjectUrl>https://github.com/stephenhaunts/ProfanityDetector</PackageProjectUrl> | ||
<PackageTags>Profanity Filter, Profanity Detector</PackageTags> | ||
<Title>Profanity Detector</Title> | ||
<Description>Profanity Filter used to detect or censor text in an application. You can use the inbuilt profanity list, or load up your organizations custom list.</Description> | ||
<ReleaseVersion>0.1.2</ReleaseVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<Optimize>false</Optimize> | ||
<WarningLevel>4</WarningLevel> | ||
<Optimize>false</Optimize> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Folder Include="Interfaces\" /> | ||
</ItemGroup> | ||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<PackOnBuild>true</PackOnBuild> | ||
<PackageId>Profanity.Detector</PackageId> | ||
<PackageVersion>0.1.8</PackageVersion> | ||
<Authors>Stephen Haunts</Authors> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<PackageLicenseUrl>https://github.com/stephenhaunts/ProfanityDetector/blob/master/LICENSE</PackageLicenseUrl> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Owners>Stephen Haunts</Owners> | ||
<PackageProjectUrl>https://github.com/stephenhaunts/ProfanityDetector</PackageProjectUrl> | ||
<PackageTags>Profanity Filter, Profanity Detector</PackageTags> | ||
<Title>Profanity Detector</Title> | ||
<Description>Profanity Filter used to detect or censor text in an application. You can use the inbuilt profanity list, or load up your organizations custom list.</Description> | ||
<ReleaseVersion>0.1.2</ReleaseVersion> | ||
<AssemblyName>ProfanityDetector</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<Optimize>false</Optimize> | ||
<WarningLevel>4</WarningLevel> | ||
<Optimize>false</Optimize> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Folder Include="Interfaces\" /> | ||
</ItemGroup> | ||
</Project> |
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
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