-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathExercism.Tests.csproj
More file actions
25 lines (21 loc) · 911 Bytes
/
Exercism.Tests.csproj
File metadata and controls
25 lines (21 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<PackageId>Exercism.Tests</PackageId>
<Version>0.1.0-beta1</Version>
<Title>Exercism Testing</Title>
<Description>This library adds Exercism-specific functionality related to testing solutions.</Description>
<Authors>Erik Schierboom</Authors>
<Company>Exercism</Company>
<PackageTags>Exercism;Testing</PackageTags>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/exercism/dotnet-tests</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="images\icon.png" Pack="true" PackagePath="icon.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="xunit.extensibility.core" Version="2.4.1" />
</ItemGroup>
</Project>