-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDnDGen.Infrastructure.Tests.Integration.csproj
More file actions
49 lines (49 loc) · 2.82 KB
/
DnDGen.Infrastructure.Tests.Integration.csproj
File metadata and controls
49 lines (49 loc) · 2.82 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Remove="Tables\Collections\CollectionTable.xml" />
<None Remove="Tables\Collections\CreatureGen-CreatureGroups.xml" />
<None Remove="Tables\Collections\CreatureGroups.xml" />
<None Remove="Tables\Collections\EncounterGen-CreatureGroups.xml" />
<None Remove="Tables\Collections\EncounterGroups.xml" />
<None Remove="Tables\Collections\OtherCollectionTable.xml" />
<None Remove="Tables\Percentiles\BooleanPercentileTable.xml" />
<None Remove="Tables\Percentiles\IntPercentileTable.xml" />
<None Remove="Tables\Percentiles\StringPercentileTable.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Tables\Collections\CollectionTable.xml" />
<EmbeddedResource Include="Tables\Collections\CreatureGen-CreatureGroups.xml" />
<EmbeddedResource Include="Tables\Collections\TypeAndAmountCollectionTable.xml" />
<EmbeddedResource Include="Tables\Collections\EncounterGen-CreatureGroups.xml" />
<EmbeddedResource Include="Tables\Collections\EncounterGroups.xml" />
<EmbeddedResource Include="Tables\Collections\DataCollectionTable.xml" />
<EmbeddedResource Include="Tables\Collections\OtherCollectionTable.xml" />
<EmbeddedResource Include="Tables\Percentiles\BooleanPercentileTable.xml" />
<EmbeddedResource Include="Tables\Percentiles\BigTypeAndAmountPercentileTable.xml" />
<EmbeddedResource Include="Tables\Percentiles\TypeAndAmountPercentileTable.xml" />
<EmbeddedResource Include="Tables\Percentiles\IntPercentileTable.xml" />
<EmbeddedResource Include="Tables\Percentiles\DataPercentileTable.xml" />
<EmbeddedResource Include="Tables\Percentiles\StringPercentileTable.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DnDGen.RollGen" Version="16.0.6" />
<PackageReference Include="Ninject" Version="3.3.6" />
<PackageReference Include="nunit" Version="4.5.0" />
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DnDGen.Infrastructure.Another\DnDGen.Infrastructure.Another.csproj" />
<ProjectReference Include="..\DnDGen.Infrastructure.YetAnother\DnDGen.Infrastructure.YetAnother.csproj" />
<ProjectReference Include="..\DnDGen.Infrastructure\DnDGen.Infrastructure.csproj" />
<ProjectReference Include="..\DnDGen.Infrastructure.Other\DnDGen.Infrastructure.Other.csproj" />
</ItemGroup>
</Project>