-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathArchUnitNET.xUnit.csproj
More file actions
34 lines (34 loc) · 1.56 KB
/
ArchUnitNET.xUnit.csproj
File metadata and controls
34 lines (34 loc) · 1.56 KB
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
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
<IsPackable>true</IsPackable>
<Title>ArchUnit C# xUnit Extension</Title>
<Description>xUnit Extension for the C# Version of ArchUnit (see: archunit.org)</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/TNG/ArchUnitNET</RepositoryUrl>
<PackageTags>test;arch;archunit;xunit</PackageTags>
<IncludeSource>False</IncludeSource>
<Company>TNG Technology Consulting GmbH</Company>
<PackageId>TngTech.ArchUnitNET.xUnit</PackageId>
<IsTestProject>false</IsTestProject>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\strongNameKey.snk</AssemblyOriginatorKeyFile>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ArchUnitNET\ArchUnitNET.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="xunit.assert" Version="2.4.1" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="" />
<None Include="../Logo/ArchUnitNET-Logo.png" Pack="true" PackagePath="/Logo/" />
</ItemGroup>
</Project>