Skip to content

Commit d8b402f

Browse files
authored
Merge pull request #4589 from LuckyPennySoftware/slnx
Migrating to slnx
2 parents 8ef7df2 + 09d3bb7 commit d8b402f

File tree

4 files changed

+36
-144
lines changed

4 files changed

+36
-144
lines changed

AutoMapper.WindowsCI.slnf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"solution": {
3-
"path": "AutoMapper.sln",
3+
"path": "AutoMapper.slnx",
44
"projects": [
55
"src\\AutoMapper\\AutoMapper.csproj",
66
"src\\AutoMapper.DI.Tests\\AutoMapper.DI.Tests.csproj",

AutoMapper.sln

Lines changed: 0 additions & 142 deletions
This file was deleted.

AutoMapper.slnx

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<Solution>
2+
<Configurations>
3+
<BuildConfiguration Name="Debug" />
4+
<BuildConfiguration Name="Release" />
5+
<Platform Name="Any CPU" />
6+
<Platform Name="ARM" />
7+
<Platform Name="x64" />
8+
<Platform Name="x86" />
9+
</Configurations>
10+
<Folder Name="/Solution Items/">
11+
<File Path=".editorconfig" />
12+
<File Path=".github/workflows/ci.yml" />
13+
<File Path=".github/workflows/release.yml" />
14+
<File Path="AutoMapper.snk" />
15+
<File Path="Build.ps1" />
16+
<File Path="CONTRIBUTING.md" />
17+
<File Path="Directory.Build.props" />
18+
<File Path="icon.png" />
19+
<File Path="ISSUE_TEMPLATE.md" />
20+
<File Path="nuget.config" />
21+
<File Path="Push.ps1" />
22+
<File Path="README.md" />
23+
</Folder>
24+
<Project Path="src/AutoMapper.DI.Tests/AutoMapper.DI.Tests.csproj" />
25+
<Project Path="src/AutoMapper/AutoMapper.csproj" />
26+
<Project Path="src/Benchmark/Benchmark.csproj">
27+
<Build Solution="*|ARM" Project="false" />
28+
<Build Solution="*|x64" Project="false" />
29+
<Build Solution="*|x86" Project="false" />
30+
</Project>
31+
<Project Path="src/IntegrationTests/AutoMapper.IntegrationTests.csproj" />
32+
<Project Path="src/TestApp/TestApp.csproj" />
33+
<Project Path="src/UnitTests/AutoMapper.UnitTests.csproj" />
34+
</Solution>

Build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if ($env:GITHUB_ACTIONS -eq 'true' -and $env:RUNNER_OS -eq 'Windows') {
3232
}
3333
else {
3434
Write-Host "🖥️ Running locally or on a different platform"
35-
$solution = "./AutoMapper.sln"
35+
$solution = "./AutoMapper.slnx"
3636
}
3737

3838
exec { & dotnet test $solution --configuration Release --results-directory $artifacts --logger trx }

0 commit comments

Comments
 (0)