-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
84 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<Project ToolsVersion="15.0"> | ||
<!--Workaround for https://github.com/Microsoft/vstest/issues/1129 from https://dasmulli.blog/2018/01/20/make-dotnet-test-work-on-solution-files/--> | ||
<Target Name="VSTestIfTestProject"> | ||
<CallTarget Targets="VSTest" Condition="'$(IsTestProject)' == 'true'" /> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<Project ToolsVersion="15.0"> | ||
<!--Workaround for https://github.com/Microsoft/vstest/issues/1129 from https://dasmulli.blog/2018/01/20/make-dotnet-test-work-on-solution-files/--> | ||
<Target Name="VSTest"> | ||
<MSBuild Projects="@(ProjectReference)" Targets="VSTestIfTestProject"/> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,27 @@ | ||
<Project ToolsVersion="15.0" DefaultTargets="Test;Build"> | ||
<Project ToolsVersion="15.0"> | ||
|
||
<Import Project="Directory.Build.props" /> | ||
|
||
<PropertyGroup> | ||
<Name>Equinox</Name> | ||
<Cfg>--configuration Release</Cfg> | ||
|
||
<ThisDirAbsolute>$([System.IO.Path]::GetFullPath("$(MSBuildThisFileDirectory)"))</ThisDirAbsolute> | ||
<PackOptions>-o $(ThisDirAbsolute)bin --version-suffix "$(VersionSuffix)"</PackOptions> | ||
<TestOptions>--logger:trx</TestOptions> | ||
</PropertyGroup> | ||
|
||
<Target Name="Build"> | ||
<Exec Command="dotnet pack cli/$(Name).Cli $(Cfg) $(PackOptions)" /> | ||
<Exec Command="dotnet pack src/$(Name) $(Cfg) $(PackOptions)" /> | ||
<Exec Command="dotnet pack src/$(Name).Codec $(Cfg) $(PackOptions)" /> | ||
<Exec Command="dotnet pack src/$(Name).EventStore $(Cfg) $(PackOptions)" /> | ||
<Exec Command="dotnet pack src/$(Name).MemoryStore $(Cfg) $(PackOptions)" /> | ||
<Target Name="Pack"> | ||
<Exec Command="dotnet pack cli/Equinox.Cli $(Cfg) $(PackOptions)" /> | ||
<Exec Command="dotnet pack src/Equinox $(Cfg) $(PackOptions)" /> | ||
<Exec Command="dotnet pack src/Equinox.Codec $(Cfg) $(PackOptions)" /> | ||
<Exec Command="dotnet pack src/Equinox.EventStore $(Cfg) $(PackOptions)" /> | ||
<Exec Command="dotnet pack src/Equinox.MemoryStore $(Cfg) $(PackOptions)" /> | ||
</Target> | ||
|
||
<Target Name="Test"> | ||
<Exec Command="dotnet test samples/Store/Domain.Tests $(Cfg) $(TestOptions)" /> | ||
<Exec Command="dotnet test tests/$(Name).MemoryStore.Integration $(Cfg) $(TestOptions)" /> | ||
<Exec Condition=" '$(SkipIntegration)' != 'true' " Command="dotnet test tests/$(Name).EventStore.Integration $(Cfg) $(TestOptions)" /> | ||
<Exec Condition=" '$(SkipIntegration)' != 'true' " Command="dotnet test samples/Store/Integration $(Cfg) $(TestOptions)" /> | ||
<Target Name="VSTest"> | ||
<Exec Command="dotnet test Equinox.sln $(Cfg) $(TestOptions)" /> | ||
</Target> | ||
|
||
<Target Name="Build" DependsOnTargets="VSTest;Pack" /> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
samples/Store/Domain.Tests/xunit.runner.json → tests/xunit.runner.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
{ | ||
"appDomain": "denied" | ||
} |