Skip to content

Commit 8d36695

Browse files
Update spark-dotnet.md
Updating image coding to add gray border around image (line 29), increasing indentation (lines 32-47)
1 parent 51b0319 commit 8d36695

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

articles/synapse-analytics/spark/spark-dotnet.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,24 @@ Visit the tutorial to learn how to use Azure Synapse Analytics to [create Apache
2626
1. Configure your `dotnet` application dependencies for compatibility with Synapse Spark.
2727
The required .NET Spark version will be noted in the Synapse Studio interface under your Apache Spark Pool configuration, under the Manage toolbox.
2828

29-
![Screenshot that shows properties, including the .NET Spark version.](./media/apache-spark-job-definitions/net-spark-workspace-compatibility.png)
29+
:::image type="content" source="./media/apache-spark-job-definitions/net-spark-workspace-compatibility.png" alt-text="Screenshot that shows properties, including the .NET Spark version.":::
3030

31-
32-
Create your project as a .NET console application that outputs an Ubuntu x86 executable.
31+
Create your project as a .NET console application that outputs an Ubuntu x86 executable.
3332

34-
```
35-
<Project Sdk="Microsoft.NET.Sdk">
36-
37-
<PropertyGroup>
38-
<OutputType>Exe</OutputType>
39-
<TargetFramework>netcoreapp3.1</TargetFramework>
40-
</PropertyGroup>
41-
42-
<ItemGroup>
43-
<PackageReference Include="Microsoft.Spark" Version="2.1.0" />
44-
</ItemGroup>
45-
46-
</Project>
47-
```
33+
```
34+
<Project Sdk="Microsoft.NET.Sdk">
35+
36+
<PropertyGroup>
37+
<OutputType>Exe</OutputType>
38+
<TargetFramework>netcoreapp3.1</TargetFramework>
39+
</PropertyGroup>
40+
41+
<ItemGroup>
42+
<PackageReference Include="Microsoft.Spark" Version="2.1.0" />
43+
</ItemGroup>
44+
45+
</Project>
46+
```
4847

4948
2. Run the following commands to publish your app. Be sure to replace *mySparkApp* with the path to your app.
5049

0 commit comments

Comments
 (0)