Skip to content

Commit ed3c424

Browse files
Merge pull request #35 from dsyme/fs3a
move C# --> csharp
2 parents bd301b2 + 7954e1d commit ed3c424

File tree

210 files changed

+17
-16
lines changed

Some content is hidden

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

210 files changed

+17
-16
lines changed

.vsts-dotnet-ci.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
phases:
2-
- phase: GettingStarted
2+
- phase: CSharpGettingStarted
33
queue: Hosted VS2017
44
steps:
55
- task: DotNetCoreCLI@2
6-
displayName: Build GettingStarted
6+
displayName: Build C# GettingStarted
77
inputs:
8-
projects: '.\samples\getting-started\GettingStarted.sln'
8+
projects: '.\samples\csharp\getting-started\GettingStarted.sln'
9+
910
- phase: BinaryClasification_Titanic
1011
queue: Hosted VS2017
1112
steps:
1213
- task: DotNetCoreCLI@2
1314
displayName: Build BinaryClasification_Titanic
1415
inputs:
15-
projects: '.\samples\examples\BinaryClasification_Titanic\BinaryClasification_Titanic.sln'
16+
projects: '.\samples\csharp\examples\BinaryClasification_Titanic\BinaryClasification_Titanic.sln'
17+
1618
- phase: GitHubLabeler
1719
queue: Hosted VS2017
1820
steps:
1921
- task: DotNetCoreCLI@2
2022
displayName: Build GitHubLabeler
2123
inputs:
22-
projects: '.\samples\end-to-end-apps\github-labeler\GitHubLabeler.sln'
24+
projects: '.\samples\csharp\end-to-end-apps\github-labeler\GitHubLabeler.sln'

samples/end-to-end-apps/github-labeler/GitHubLabeler/GitHubLabeler.csproj renamed to samples/csharp/end-to-end-apps/github-labeler/GitHubLabeler/GitHubLabeler.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</ItemGroup>
2020

2121
<ItemGroup>
22-
<None Include="..\..\..\..\datasets\corefx-issues-train.tsv" Link="datasets\corefx-issues-train.tsv">
22+
<None Include="..\..\..\..\..\datasets\corefx-issues-train.tsv" Link="datasets\corefx-issues-train.tsv">
2323
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2424
</None>
2525
</ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<Content Include="..\..\..\..\datasets\titanic-train.csv" Link="datasets\titanic-train.csv">
10+
<Content Include="..\..\..\..\..\datasets\titanic-train.csv" Link="datasets\titanic-train.csv">
1111
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1212
</Content>
13-
<Content Include="..\..\..\..\datasets\titanic-test.csv" Link="datasets\titanic-test.csv">
13+
<Content Include="..\..\..\..\..\datasets\titanic-test.csv" Link="datasets\titanic-test.csv">
1414
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1515
</Content>
1616
</ItemGroup>
+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<Content Include="..\..\..\datasets\sentiment-imdb-train.txt" Link="datasets\sentiment-imdb-train.txt">
10+
<Content Include="..\..\..\..\datasets\sentiment-imdb-train.txt" Link="datasets\sentiment-imdb-train.txt">
1111
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1212
</Content>
13-
<Content Include="..\..\..\datasets\sentiment-yelp-test.txt" Link="datasets\sentiment-yelp-test.txt">
13+
<Content Include="..\..\..\..\datasets\sentiment-yelp-test.txt" Link="datasets\sentiment-yelp-test.txt">
1414
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1515
</Content>
1616
</ItemGroup>

samples/getting-started/Clustering_Iris/Clustering_Iris.csproj renamed to samples/csharp/getting-started/Clustering_Iris/Clustering_Iris.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<Content Include="..\..\..\datasets\iris-full.txt" Link="datasets\iris-full.txt">
10+
<Content Include="..\..\..\..\datasets\iris-full.txt" Link="datasets\iris-full.txt">
1111
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1212
</Content>
1313
</ItemGroup>

samples/getting-started/MulticlassClassification_Iris/MulticlassClassification_Iris.csproj renamed to samples/csharp/getting-started/MulticlassClassification_Iris/MulticlassClassification_Iris.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<Content Include="..\..\..\datasets\iris-test.txt" Link="datasets\iris-test.txt">
10+
<Content Include="..\..\..\..\datasets\iris-test.txt" Link="datasets\iris-test.txt">
1111
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1212
</Content>
13-
<Content Include="..\..\..\datasets\iris-train.txt" Link="datasets\iris-train.txt">
13+
<Content Include="..\..\..\..\datasets\iris-train.txt" Link="datasets\iris-train.txt">
1414
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1515
</Content>
1616
</ItemGroup>

samples/getting-started/Regression_TaxiFarePrediction/Program.cs renamed to samples/csharp/getting-started/Regression_TaxiFarePrediction/Program.cs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using Microsoft.ML.Transforms;
99

1010
using System.Collections.Generic;
11-
using System.IO;
1211
using System.Linq;
1312

1413
using PLplot;

samples/getting-started/Regression_TaxiFarePrediction/Regression_TaxiFarePrediction.csproj renamed to samples/csharp/getting-started/Regression_TaxiFarePrediction/Regression_TaxiFarePrediction.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<None Include="..\..\..\datasets\taxi-fare-test.csv" Link="datasets\taxi-fare-test.csv">
19+
<None Include="..\..\..\..\datasets\taxi-fare-test.csv" Link="datasets\taxi-fare-test.csv">
2020
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2121
</None>
22-
<None Include="..\..\..\datasets\taxi-fare-train.csv" Link="datasets\taxi-fare-train.csv">
22+
<None Include="..\..\..\..\datasets\taxi-fare-train.csv" Link="datasets\taxi-fare-train.csv">
2323
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2424
</None>
2525
</ItemGroup>

0 commit comments

Comments
 (0)