Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#4 move to csrpoj to enable other changes #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
31 changes: 31 additions & 0 deletions Snappy.Standard.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34728.123
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Snappy.Standard", "src\Snappy.Standard\Snappy.Standard.csproj", "{4332ACD3-43B8-47BB-8A85-FB879FE603A2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SnappyCodecTest", "test\Snappy.Tests\SnappyCodecTest.csproj", "{A9792B5A-08AB-417E-9A4D-EBF6A483ACED}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4332ACD3-43B8-47BB-8A85-FB879FE603A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4332ACD3-43B8-47BB-8A85-FB879FE603A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4332ACD3-43B8-47BB-8A85-FB879FE603A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4332ACD3-43B8-47BB-8A85-FB879FE603A2}.Release|Any CPU.Build.0 = Release|Any CPU
{A9792B5A-08AB-417E-9A4D-EBF6A483ACED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A9792B5A-08AB-417E-9A4D-EBF6A483ACED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A9792B5A-08AB-417E-9A4D-EBF6A483ACED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A9792B5A-08AB-417E-9A4D-EBF6A483ACED}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {83584B20-4BEF-407E-9E14-3A5940C33627}
EndGlobalSection
EndGlobal
6 changes: 0 additions & 6 deletions global.json

This file was deleted.

6 changes: 0 additions & 6 deletions src/Snappy.Standard/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("Snappy for .NET Standard")]
[assembly: AssemblyDescription(".NET Standard client for Google's Snappy compression library, inspired by Snappy.NET. Snappy is a very fast compression(250 MB/sec)/decompression(500 MB/sec) library written in C++.")]
[assembly: AssemblyCompany("David Rouyer")]
[assembly: AssemblyProduct("Snappy.Standard")]

[assembly: InternalsVisibleTo("Snappy.Tests")]
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]

Expand Down
33 changes: 33 additions & 0 deletions src/Snappy.Standard/Snappy.Standard.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.6</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>0.3.0</Version>
<Authors>David Rouyer</Authors>
<Description>.NET Standard client for Google's Snappy compression library inspired by Snappy.NET. Snappy is a very fast compression(250 MB/sec)/decompression(500 MB/sec) library written in C++.</Description>
<PackageId>Snappy.Standard</PackageId>
<Product>Snappy.Standard"</Product>
<PackageProjectUrl>https://github.com/DavidRouyer/Snappy</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/DavidRouyer/Snappy/LICENSE.md</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/DavidRouyer/Snappy</RepositoryUrl>
<PackageTags>snappy</PackageTags>
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Title>Snappy for .NET Standard</Title>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\snappy32.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\snappy32.lib">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\snappy64.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\snappy64.lib">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
</Project>
38 changes: 0 additions & 38 deletions src/Snappy.Standard/project.json

This file was deleted.

78 changes: 0 additions & 78 deletions test/Snappy.Tests/.gitignore

This file was deleted.

17 changes: 17 additions & 0 deletions test/Snappy.Tests/SnappyCodecTest.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;net7.0</TargetFrameworks>
<RootNamespace />
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="xunit" Version="2.8.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Snappy.Standard\Snappy.Standard.csproj" />
</ItemGroup>

</Project>
29 changes: 0 additions & 29 deletions test/Snappy.Tests/project.json

This file was deleted.