Skip to content

Commit

Permalink
Add NuGet build information
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Nov 3, 2024
1 parent 02cc5c5 commit 3dc7e81
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
25 changes: 25 additions & 0 deletions LibSceSharp.Native/LibSceSharp.Native.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,29 @@
</Content>
</ItemGroup>

<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>LittleBigRefresh</Authors>
<Title>LibSceSharp.Native</Title>
<PackageId>LibSceSharp.Native</PackageId>
<Description>Native libraries for libsce, a library to decrypt, decompress, and disassemble files used by various Sony systems.</Description>
<RepositoryUrl>https://github.com/LittleBigRefresh/LibSceSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/LittleBigRefresh/LibSceSharp</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<Target DependsOnTargets="ResolveReferences" Name="CopyProjectReferencesToPackage">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths-&gt;WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
</ItemGroup>
</Target>

</Project>
26 changes: 26 additions & 0 deletions LibSceSharp/LibSceSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateLibraryLayout>true</GenerateLibraryLayout>
</PropertyGroup>

<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>LittleBigRefresh</Authors>
<Title>LibSceSharp</Title>
<PackageId>LibSceSharp</PackageId>
<Description>C# bindings for libsce, a library to decrypt, decompress, and disassemble files used by various Sony systems.</Description>
<RepositoryUrl>https://github.com/LittleBigRefresh/LibSceSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/LittleBigRefresh/LibSceSharp</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<Target DependsOnTargets="ResolveReferences" Name="CopyProjectReferencesToPackage">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths-&gt;WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
</ItemGroup>
</Target>

</Project>

0 comments on commit 3dc7e81

Please sign in to comment.