Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.idea/
Sample.Unit.Tests/bin/Debug/.idea/
Sample.Unit.Tests/obj/Debug/netcoreapp2.2/
Sample.Unit.Tests/obj/Debug/netstandard2.0/
Sample.Unit.Tests/obj/Sample.Unit.Tests.csproj.nuget.dgspec.json
Sample.Unit.Tests/obj/project.packagespec.json

Sample/Sample.sln
Sample/obj/Sample.csproj.nuget.dgspec.json
Sample/obj/project.packagespec.json



24 changes: 10 additions & 14 deletions Sample.Unit.Tests/Sample.Unit.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>

<IsPackable>false</IsPackable>
<OutputType>Library</OutputType>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Skyapi.Skycoin" Version="0.26.0" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
</ItemGroup>

<ItemGroup>
<Reference Include="Skyapi">
<HintPath>bin/Skyapi.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sample\Sample.csproj" />
<ItemGroup>
<Reference Include="Skyapi">
<HintPath>bin/Skyapi.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sample\Sample.csproj" />
</ItemGroup>

</Project>
</Project>
Loading