Skip to content

Commit

Permalink
Nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
drasticactions committed Jul 15, 2023
1 parent d437b63 commit 753cebb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
19 changes: 17 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,26 @@
<PropertyGroup>
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<PackageIcon>favicon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Access the ATProtocol and Bluesky through .NET.</Description>
<PackageTags>atproto atprotocol bluesky</PackageTags>
<Company>Drastic Actions</Company>
<Copyright>Copyright (C) Drastic Actions</Copyright>
<IsPackable>false</IsPackable>
<Version>1.2.2</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<PackageProjectUrl>https://github.com/drasticactions/FishyFlip</PackageProjectUrl>
</PropertyGroup>

<ItemGroup Condition=" '$(IsPackable)' == 'true' ">
<None Include="$(MSBuildThisFileDirectory)favicon.png" Pack="true" PackagePath="" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
Expand Down
Binary file added favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/FishyFlip/FishyFlip.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" />
Expand Down

0 comments on commit 753cebb

Please sign in to comment.