Skip to content

Commit

Permalink
move C# --> csharp
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyme committed Aug 3, 2018
1 parent bd301b2 commit f3ad372
Show file tree
Hide file tree
Showing 210 changed files with 12 additions and 11 deletions.
8 changes: 5 additions & 3 deletions .vsts-dotnet-ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
phases:
- phase: GettingStarted
- phase: CSharpGettingStarted
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build GettingStarted
displayName: Build C# GettingStarted
inputs:
projects: '.\samples\getting-started\GettingStarted.sln'
projects: '.\samples\csharp\getting-started\GettingStarted.sln'

- phase: BinaryClasification_Titanic
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build BinaryClasification_Titanic
inputs:
projects: '.\samples\examples\BinaryClasification_Titanic\BinaryClasification_Titanic.sln'

- phase: GitHubLabeler
queue: Hosted VS2017
steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
</PropertyGroup>

<ItemGroup>
<Content Include="..\..\..\datasets\sentiment-imdb-train.txt" Link="datasets\sentiment-imdb-train.txt">
<Content Include="..\..\..\..\datasets\sentiment-imdb-train.txt" Link="datasets\sentiment-imdb-train.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\datasets\sentiment-yelp-test.txt" Link="datasets\sentiment-yelp-test.txt">
<Content Include="..\..\..\..\datasets\sentiment-yelp-test.txt" Link="datasets\sentiment-yelp-test.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<Content Include="..\..\..\datasets\iris-full.txt" Link="datasets\iris-full.txt">
<Content Include="..\..\..\..\datasets\iris-full.txt" Link="datasets\iris-full.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
</PropertyGroup>

<ItemGroup>
<Content Include="..\..\..\datasets\iris-test.txt" Link="datasets\iris-test.txt">
<Content Include="..\..\..\..\datasets\iris-test.txt" Link="datasets\iris-test.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\datasets\iris-train.txt" Link="datasets\iris-train.txt">
<Content Include="..\..\..\..\datasets\iris-train.txt" Link="datasets\iris-train.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Microsoft.ML.Transforms;

using System.Collections.Generic;
using System.IO;
using System.Linq;

using PLplot;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
</ItemGroup>

<ItemGroup>
<None Include="..\..\..\datasets\taxi-fare-test.csv" Link="datasets\taxi-fare-test.csv">
<None Include="..\..\..\..\datasets\taxi-fare-test.csv" Link="datasets\taxi-fare-test.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="..\..\..\datasets\taxi-fare-train.csv" Link="datasets\taxi-fare-train.csv">
<None Include="..\..\..\..\datasets\taxi-fare-train.csv" Link="datasets\taxi-fare-train.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
Expand Down

0 comments on commit f3ad372

Please sign in to comment.