Skip to content

Commit

Permalink
support range of frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
MyDragonBreath committed Nov 19, 2023
1 parent ef332aa commit 314b094
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion simulCastGrab/SimulCastGrab.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public class TwitchAuthentication
public TwitchAuthentication(string username, string auth)
{
Username = username;
Auth = auth.Trim().ToLower(new CultureInfo("en-US", false));
Auth = auth.Trim().ToLower(new CultureInfo("en-US"));
if (!Auth.StartsWith("oauth:", StringComparison.OrdinalIgnoreCase)) Auth = "oauth:" + Auth;
}
}
Expand Down
9 changes: 7 additions & 2 deletions simulCastGrab/simulCastGrab.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,26 @@
<Description>Simultaneous Twitch and Youtube Casting Integration</Description>
<Authors>MyDragonBreath</Authors>

<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>0.0.1</VersionPrefix>
<VersionSuffix></VersionSuffix>

<PackageReadmeFile>readme.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<PackageTags>communication;irc;networking;ctcp</PackageTags>
<RepositoryUrl>https://github.com/MyDragonBreath/simulCastGrab</RepositoryUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageId>DragonBreath.SimulCastGrab</PackageId>
<PackageReleaseNotes>https://github.com/MyDragonBreath/simulCastGrab/releases/tag/0.0.1</PackageReleaseNotes>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>

<TargetFramework>net6.0</TargetFramework>
<TargetFrameworks>net6.0;net462;netstandard2.0</TargetFrameworks>

<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand All @@ -34,6 +38,7 @@
<ItemGroup>
<PackageReference Include="IrcDotNet" Version="0.7.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="all" />
<PackageReference Include="System.Text.Json" Version="8.0.0" />
<AdditionalFiles Include="$(MSBuildThisFileDirectory)\stylecop.json" Link="stylecop.json" Visible="false" />

<None Include="..\readme.md" Pack="true" PackagePath="\"/>
Expand Down

0 comments on commit 314b094

Please sign in to comment.