Skip to content

Commit 2f436f4

Browse files
Use artifacts output
1 parent 28c924b commit 2f436f4

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

Directory.Build.props

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<Project>
4+
<PropertyGroup>
5+
<LangVersion>latest</LangVersion>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<UseArtifactsOutput>true</UseArtifactsOutput>
8+
</PropertyGroup>
9+
</Project>

Matchmaker.Tests/Matchmaker.Tests.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
<PropertyGroup>
44
<OutputType>exe</OutputType>
55
<TargetFramework>net9.0</TargetFramework>
6-
<LangVersion>latest</LangVersion>
76
<Nullable>disable</Nullable>
8-
<ImplicitUsings>enable</ImplicitUsings>
97
<IsPackable>false</IsPackable>
108
<IsTestProject>true</IsTestProject>
119
<RootNamespace>Matchmaker</RootNamespace>
12-
<NoWarn>1701;1702;1718;CA1822;CA2012</NoWarn>
10+
<NoWarn>$(NoWarn);1701;1702;1718;CA1822;CA2012</NoWarn>
1311
</PropertyGroup>
1412

1513
<ItemGroup>

Matchmaker.slnx

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,17 @@
11
<Solution>
2-
<Folder Name="/Solution Items/">
3-
<File Path=".editorconfig" />
4-
<File Path=".gitattributes" />
5-
<File Path=".github/workflows/main.yml" />
6-
<File Path=".gitignore" />
7-
<File Path="CHANGELOG.md" />
8-
<File Path="LICENSE" />
9-
<File Path="README.md" />
10-
</Folder>
11-
<Folder Name="/Solution Items/docs/">
2+
<Folder Name="/docs/">
123
<File Path="docs/.gitignore" />
134
<File Path="docs/docfx.json" />
145
<File Path="docs/favicon.ico" />
156
<File Path="docs/index.md" />
167
<File Path="docs/logo.svg" />
178
<File Path="docs/toc.yml" />
189
</Folder>
19-
<Folder Name="/Solution Items/docs/api/">
10+
<Folder Name="/docs/api/">
2011
<File Path="docs/api/.gitignore" />
2112
<File Path="docs/api/index.md" />
2213
</Folder>
23-
<Folder Name="/Solution Items/docs/articles/">
14+
<Folder Name="/docs/articles/">
2415
<File Path="docs/articles/async.md" />
2516
<File Path="docs/articles/expressions.md" />
2617
<File Path="docs/articles/intro.md" />
@@ -32,6 +23,16 @@
3223
<File Path="docs/articles/unions.md" />
3324
<File Path="docs/articles/why.md" />
3425
</Folder>
26+
<Folder Name="/Solution Items/">
27+
<File Path=".editorconfig" />
28+
<File Path=".gitattributes" />
29+
<File Path=".github/workflows/main.yml" />
30+
<File Path=".gitignore" />
31+
<File Path="CHANGELOG.md" />
32+
<File Path="Directory.Build.props" />
33+
<File Path="LICENSE" />
34+
<File Path="README.md" />
35+
</Folder>
3536
<Project Path="Matchmaker.Tests/Matchmaker.Tests.csproj" />
3637
<Project Path="Matchmaker/Matchmaker.csproj" />
3738
</Solution>

Matchmaker/Matchmaker.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
5-
<LangVersion>latest</LangVersion>
65
<Nullable>enable</Nullable>
7-
<ImplicitUsings>enable</ImplicitUsings>
86
</PropertyGroup>
97

108
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">

0 commit comments

Comments
 (0)