Skip to content

Commit 1ce3b71

Browse files
committed
Merge branch 'core2'
2 parents 68f06c4 + be5d237 commit 1ce3b71

File tree

369 files changed

+14322
-16952
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

369 files changed

+14322
-16952
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -254,3 +254,7 @@ ModelManifest.xml
254254
/TestExes/LangRNN/Data/Gutenberg.txt
255255
/TestExes/LangRNN/Data/Gutenberg1000000.txt
256256
.idea
257+
258+
259+
bin/
260+
obj/

.mailmap

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
Marcus Basalla <[email protected]>
3+

.travis.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: csharp
2+
mono: none
3+
dotnet: 2.1.104
4+
env:
5+
- secure: "fRLB3ZnIWTLJECstFjA+dfZUcmf/YI4B5QesZpmohVVvoVUWvC2rs8x40Pjrov6egE3df/LDtvANuY5u4Njvl58lG8psJ8PbtB+f14FlRHOBNHmWJUOA4ABajz537ddxVNgXlMCLDzd9WRxDSd1PZhzhL35FL/yH7H8EYCfAX1b1/Y7GgicBa1t6x0vHjLjFLFIVGqC6B/EPG89/zt+RfFMmo3g6B+B33tbXXhIDSpci6LwOATDGGN9PWuS5KYqAZghAKOAL28NaEdTsvyMZZxISDGLYPoSrJOCm5BNranUYQSad98m7Va7NKJcvPnpq8oC44uFXemJu4oLbMV6lISLEnkrURY/TR1mY+haymw4PDF4EUL8N2BPtKgdvX6cHd1mTe++jOEP/eODB5rnM/gnNPLIr5HddACJVws4JEikxvVrnbZpqbXh9DB0yp3rtxpHrmVnRn2cem34K7kbpQNYEykE98Hs1wB5SmyAMTr/Co23V7wVIJDWMaei468jHnlYIg/6VvX/3Qow4MdVewqsBpvSkNcVBlL6us0q54BpwAkscgvOwKyuCM+pht8+ZoH3M7hdw2k0njVKMPZJTmg8oXQSVWC+J1wZAUMIrRO4EsBCZ5NxzUb77OTEi5z49UaUb9zMgbyU9PA1AKwD7XShNgnMFpMrTOmImUSyNnho="
6+
solution: Numeric/Tensor.sln
7+
install:
8+
- mkdir -p ~/.nuget/NuGet
9+
- echo '<?xml version="1.0" encoding="utf-8"?>' > ~/.nuget/NuGet/NuGet.Config
10+
- echo '<configuration><packageSources>' >> ~/.nuget/NuGet/NuGet.Config
11+
- echo '<add key="Core Ports" value="https://www.myget.org/F/coreports/api/v3/index.json" protocolVersion="3" />' >> ~/.nuget/NuGet/NuGet.Config
12+
- echo '<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />' >> ~/.nuget/NuGet/NuGet.Config
13+
- echo '</packageSources></configuration>' >> ~/.nuget/NuGet/NuGet.Config
14+
script:
15+
- echo "<Project><PropertyGroup><Rev>$TRAVIS_BUILD_NUMBER</Rev></PropertyGroup></Project>" > Revision.targets
16+
- dotnet build Numeric/Tensor.sln
17+
- dotnet test Numeric/Tensor.Test/Tensor.Test.fsproj
18+
- dotnet pack -c Release Numeric/Tensor.sln
19+
after_success:
20+
- if [ "$TRAVIS_BRANCH" = "core2" ]; then dotnet nuget push -s https://www.myget.org/F/coreports/api/v2/package -k $MYGETKEY 'Packages/Release/*.nupkg'; fi
21+

Common.targets

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<Project>
2+
3+
<Import Project="Revision.targets" />
4+
5+
<PropertyGroup>
6+
<TargetFramework>netstandard2.0</TargetFramework>
7+
<Platform>x64</Platform>
8+
9+
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
10+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
11+
<IncludeSymbols>true</IncludeSymbols>
12+
<IncludeSource>true</IncludeSource>
13+
14+
<Product>Deep.Net</Product>
15+
<Company>Deep.Net Developers</Company>
16+
<authors>Deep.Net Developers</authors>
17+
<owners>Deep.Net Developers</owners>
18+
<Copyright>Copyright (C) Deep.Net Developers. Licensed under the Apache 2.0 license.</Copyright>
19+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
20+
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0.txt</PackageLicenseUrl>
21+
<PackageProjectUrl>http://www.deepml.net</PackageProjectUrl>
22+
<PackageOutputPath>$(MSBuildThisFileDirectory)/Packages/$(Configuration)/</PackageOutputPath>
23+
24+
<BaseVersion>0.4</BaseVersion>
25+
<PackageVersion>$(BaseVersion).$(Rev)</PackageVersion>
26+
<AssemblyVersion>$(PackageVersion)</AssemblyVersion>
27+
<FileVersion>$(PackageVersion)</FileVersion>
28+
</PropertyGroup>
29+
30+
</Project>

DeepNet-CI.sln

-144
This file was deleted.

0 commit comments

Comments
 (0)