-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathArchUnitNET.csproj
More file actions
34 lines (34 loc) · 1.59 KB
/
ArchUnitNET.csproj
File metadata and controls
34 lines (34 loc) · 1.59 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>
<RootNamespace>ArchUnitNET</RootNamespace>
<PackageId>TngTech.ArchUnitNET</PackageId>
<Title>ArchUnit C#</Title>
<Company>TNG Technology Consulting GmbH</Company>
<Description>C# Version of ArchUnit (see: archunit.org)</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageTags>test;arch;archunit;xunit;nunit</PackageTags>
<IncludeSource>False</IncludeSource>
<RepositoryUrl>https://github.com/TNG/ArchUnitNET</RepositoryUrl>
<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>
<PackageReference Include="CycleDetection" Version="2.0.0" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
<PackageReference Include="Mono.Cecil" Version="0.11.6" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="System.ValueTuple" Version="4.6.1" />
</ItemGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="" />
<None Include="../Logo/ArchUnitNET-Logo.png" Pack="true" PackagePath="/Logo/" />
<None Remove="License.md" />
</ItemGroup>
</Project>