Skip to content

Commit 70d899d

Browse files
David-FromVSDavid-FromVS
authored andcommitted
Updated from MS main
2 parents 2746e0e + defe4a8 commit 70d899d

Some content is hidden

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

47 files changed

+4685
-1
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
# Treat pkgdef files as text
88
###############################################################################
99
*.pkgdef text
10+
11+
# Use unix line endings on shell scripts so that they can be run on unix
12+
*.sh.txt text eol=lf

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,14 @@ intermediate
2020
*.tmp
2121
*.VC.opendb
2222
*.VC.db
23+
*.binlog
2324
packages/
2425
.vs/
2526
Microsoft.VisualStudio.Glass
2627
/Iris/Programs/*.dll
2728
/Iris/Programs/*.exe
2829
/Iris/Programs/*.pdb
30+
/Iris/ic/Properties/launchSettings.json
31+
/Iris/xplat-package/Properties/launchSettings.json
2932
/CppCustomVisualizer/SignVSIX.bat
3033
/CppCustomVisualizer/dll/CppCustomVisualizer.aps

BuildAndTest.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474

7575
<ItemGroup>
7676
<Solution Include="$(IrisDir)Iris.sln;$(HelloWorldDir)cs\HelloWorld.sln">
77-
<AdditionalProperties>Configuration=$(Configuration)</AdditionalProperties>
77+
<AdditionalProperties>Configuration=$(Configuration);Platform=Any CPU</AdditionalProperties>
7878
</Solution>
7979
<Solution Include="$(HelloWorldDir)cpp\HelloWorld.sln">
8080
<AdditionalProperties>Configuration=$(Configuration);Platform=Win32</AdditionalProperties>

Iris/FrontEndTest/FrontEndTest.csproj

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net5.0;net472</TargetFrameworks>
5+
6+
<IsPackable>false</IsPackable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="NUnit" Version="3.12.0" />
11+
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<ProjectReference Include="..\IrisCompiler\IrisCompiler.csproj" />
17+
<ProjectReference Include="..\IrisRuntime\IrisRuntime.csproj" />
18+
</ItemGroup>
19+
20+
</Project>

0 commit comments

Comments
 (0)