-
Notifications
You must be signed in to change notification settings - Fork 85
[MIX][FEAT] Suggested posix compatibility changes #197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| #!/bin/sh | ||
|
|
||
| dotnet run --project EDSSharp --framework net8.0 --property WarningLevel=0 "$@" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| #!/bin/sh | ||
|
|
||
| dotnet run --project EDSEditorGUI2 --property WarningLevel=0 "$@" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| #!/bin/sh | ||
|
|
||
| COLOR='\033[38;5;21m' | ||
| BG='\033[47m' | ||
| WHITE='\033[0;32m' | ||
|
|
||
| echo ${BG}${COLOR}"LIB and CLI tests:"${WHITE} | ||
| dotnet run --project Tests --framework net8.0 --property WarningLevel=0 | ||
| echo ${BG}${COLOR}"GUI tests:"${WHITE} | ||
| dotnet run --project GUITests --framework net8.0 --property WarningLevel=0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,8 @@ | |
| <TargetFrameworks Condition="'$(BuildNet481)' == 'true'">net481</TargetFrameworks> | ||
| <TargetFrameworks Condition="'$(BuildNet8)' == 'true'">net8.0</TargetFrameworks> | ||
| <TargetFrameworks Condition="'$(TargetFrameworks)' == ''">net481;net8.0</TargetFrameworks> | ||
| <OutputType>Library</OutputType> | ||
| <OutputType>Exe</OutputType> | ||
| <RootNamespace>Tests</RootNamespace> | ||
| <GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
|
|
@@ -19,19 +20,8 @@ | |
| <None Include="minimal_project.xdd"> | ||
| <CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
| </None> | ||
| <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" /> | ||
| <PackageReference Include="xunit.v3" Version="3.2.0" /> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. using xunit.v3 is a good idea, but we need to get it through the CI first to see if it works for all .net versions
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like it doesn't |
||
| <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" /> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this might be a good idea if it works in the CI and all we needed is included in the new nuget👍
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like it doesn't
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like it is no building and there is only a problem with running the tests |
||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" /> | ||
| <PackageReference Include="xunit" Version="2.7.0" /> | ||
| <PackageReference Include="xunit.analyzers" Version="1.11.0" /> | ||
| <PackageReference Include="xunit.assert" Version="2.7.0" /> | ||
| <PackageReference Include="xunit.runner.console" Version="2.7.0"> | ||
| <PrivateAssets>all</PrivateAssets> | ||
| <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
| </PackageReference> | ||
| <PackageReference Include="xunit.runner.visualstudio" Version="2.5.7"> | ||
| <PrivateAssets>all</PrivateAssets> | ||
| <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
| </PackageReference> | ||
| </ItemGroup> | ||
| </Project> | ||
| </Project> | ||
Uh oh!
There was an error while loading. Please reload this page.