forked from TNG/ArchUnitNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArchUnitNET.csproj
More file actions
32 lines (28 loc) · 1.38 KB
/
ArchUnitNET.csproj
File metadata and controls
32 lines (28 loc) · 1.38 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<IsPackable>true</IsPackable>
<RootNamespace>ArchUnitNET</RootNamespace>
<PackageId>TngTech.ArchUnitNET</PackageId>
<Title>ArchUnit C#</Title>
<Authors>Florian Gather, Paula Ruiz, Fritz Brandhuber, Pavel Fischer</Authors>
<Company>TNG Technology Consulting GmbH</Company>
<Description>C# Version of ArchUnit (see: archunit.org)</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReleaseNotes>Initial release of the fluent API</PackageReleaseNotes>
<PackageTags>test;arch;archunit;xunit;nunit</PackageTags>
<IncludeSource>False</IncludeSource>
<RepositoryUrl>https://github.com/TNG/ArchUnitNET</RepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CycleDetection" Version="2.0.0" />
<PackageReference Include="JetBrains.Annotations" Version="2020.3.0" />
<PackageReference Include="Mono.Cecil" Version="0.11.3" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<None Remove="License.md" />
</ItemGroup>
</Project>