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

upgrade to dotnet core #13

Open
wants to merge 5 commits 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
34 changes: 28 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
language: csharp
solution: aliyun-tablestore-csharp-sdk.sln
mono:
- latest
- 4.2.1
- 4.0.0
- 3.12.0
dist: trusty
dotnet: 2.0.0
before_install:
- dotnet --version
- phantomjs --version
script:
- dotnet restore
- dotnet run ip http://1212.ip138.com/ic.asp png
- dotnet run acfun http://www.acfun.cn/ jpg 20
- dotnet run bilibili https://www.bilibili.com jpg 20
- dotnet run youtube https://www.youtube.com jpg 20
- dotnet run google https://www.google.com
after_script:
- cd download
- git init
- git config user.name "${U_NAME}"
- git config user.email "${U_EMAIL}"
- git add .
- git commit -m "add imgs"
- git remote add orginimgs "https://${GH_TOKEN}@${GH_REF}"
- export current_date='date +%Y%m%d'
- echo "current_date:$($current_date)"
- git push --force --quiet orginimgs master:gh-pages
- git push --force --quiet orginimgs master:gh-pages_$($current_date)

branches:
only:
- master
2 changes: 1 addition & 1 deletion sample/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
</startup>
</configuration>
7 changes: 5 additions & 2 deletions sample/aliyun-tablestore-sdk-sample.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand All @@ -14,6 +14,7 @@
<TargetFrameworkProfile />
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -23,6 +24,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -32,6 +34,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Aliyun.OTS.Samples.Samples.SearchIndexSample</StartupObject>
Expand Down Expand Up @@ -64,7 +67,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\sdk\aliyun-tablestore-sdk.csproj">
<Project>{AB5EFCA2-53A9-42B5-861E-3FD6F865036B}</Project>
<Project>{ab5efca2-53a9-42b5-861e-3fd6f865036b}</Project>
<Name>aliyun-tablestore-sdk</Name>
</ProjectReference>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion sample/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net40" />
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net40" requireReinstallation="true" />
</packages>
36 changes: 0 additions & 36 deletions sdk/Properties/AssemblyInfo.cs

This file was deleted.

Loading