Skip to content

Commit

Permalink
Fixed Windows binary which accidentally turned out to be x32. Also ha…
Browse files Browse the repository at this point in the history
…ndbuilt Linux bin since one from build server didn't work. Will investigate further.
  • Loading branch information
olegtarasov committed Jun 10, 2019
1 parent f12bb93 commit d965eff
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
24 changes: 12 additions & 12 deletions FastText.NetWrapper.sln
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2020
# Visual Studio Version 16
VisualStudioVersion = 16.0.28922.388
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastText.NetWrapper", "FastText.NetWrapper\FastText.NetWrapper.csproj", "{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FastText.NetWrapper", "FastText.NetWrapper\FastText.NetWrapper.csproj", "{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestUtil", "TestUtil\TestUtil.csproj", "{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestUtil", "TestUtil\TestUtil.csproj", "{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}.Debug|x64.ActiveCfg = Debug|x64
{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}.Debug|x64.Build.0 = Debug|x64
{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}.Release|x64.ActiveCfg = Release|x64
{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}.Release|x64.Build.0 = Release|x64
{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}.Debug|x64.ActiveCfg = Debug|x64
{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}.Debug|x64.Build.0 = Debug|x64
{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}.Release|x64.ActiveCfg = Release|x64
{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}.Release|x64.Build.0 = Release|x64
{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}.Debug|x64.ActiveCfg = Debug|Any CPU
{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}.Debug|x64.Build.0 = Debug|Any CPU
{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}.Release|x64.ActiveCfg = Release|Any CPU
{E9BCD9F6-D9D9-4F12-B440-6B65585106B0}.Release|x64.Build.0 = Release|Any CPU
{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}.Debug|x64.ActiveCfg = Debug|Any CPU
{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}.Debug|x64.Build.0 = Debug|Any CPU
{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}.Release|x64.ActiveCfg = Release|Any CPU
{4530C4C1-77DC-44DB-8199-3B0BAE6E4656}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
11 changes: 9 additions & 2 deletions FastText.NetWrapper/FastText.NetWrapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FastText.Native.Linux" Version="1.0.67" />
<None Remove="Resources\libfasttext.so" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="Resources\libfasttext.so" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="FastText.Native.MacOs" Version="1.0.66" />
<PackageReference Include="FastText.Native.Windows" Version="1.0.65" />
<PackageReference Include="FastText.Native.Windows" Version="1.0.68" />
<PackageReference Include="LibLog" Version="5.0.6" />
<PackageReference Include="NativeLibraryManager" Version="1.0.14" />
</ItemGroup>
Expand Down
Binary file added FastText.NetWrapper/Resources/libfasttext.so
Binary file not shown.

0 comments on commit d965eff

Please sign in to comment.