-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTestDataGenerator.csproj
48 lines (41 loc) · 2.23 KB
/
TestDataGenerator.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoFixture" Version="5.0.0-preview0011"/>
<PackageReference Include="Azure.Identity" Version="1.13.0"/>
<PackageReference Include="Azure.Storage.Blobs" Version="12.23.0-beta.2"/>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.3.0"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.3.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0-rc.2.24473.5"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Ini" Version="9.0.0-rc.2.24473.5"/>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0-rc.2.24473.5"/>
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0-rc.2.24473.5"/>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0-rc.2.24473.5"/>
<PackageReference Include="Serilog" Version="4.1.0"/>
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.4"/>
<PackageReference Include="System.Net.Http" Version="4.3.4"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Btms.Azure\Btms.Azure.csproj" />
<ProjectReference Include="..\Btms.BlobService\Btms.BlobService.csproj" />
<ProjectReference Include="..\Btms.Common\Btms.Common.csproj" />
<ProjectReference Include="..\Btms.Model\Btms.Model.csproj" />
<ProjectReference Include="..\Btms.Types.Alvs.V1\Btms.Types.Alvs.V1.csproj" />
<ProjectReference Include="..\Btms.Types.Ipaffs.V1\Btms.Types.Ipaffs.V1.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="Scenarios\Samples\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>