-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathArcus.Testing.Storage.File.Share.csproj
More file actions
44 lines (38 loc) · 1.8 KB
/
Arcus.Testing.Storage.File.Share.csproj
File metadata and controls
44 lines (38 loc) · 1.8 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
<RootNamespace>Arcus.Testing</RootNamespace>
<Authors>Arcus</Authors>
<Company>Arcus</Company>
<Description>Provides capabilities during testing of Azure Files share storage interactions</Description>
<Copyright>Copyright (c) Arcus</Copyright>
<PackageProjectUrl>https://github.com/arcus-azure/arcus.testing</PackageProjectUrl>
<RepositoryUrl>https://github.com/arcus-azure/arcus.testing</RepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>Git</RepositoryType>
<PackageTags>Azure;Testing;Storage</PackageTags>
<PackageId>Arcus.Testing.Storage.File.Share</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>$(WarningsNotAsErrors);NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
<AnalysisMode>All</AnalysisMode>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\ObsoleteDefaults.cs" Link="ObsoleteDefaults.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\LICENSE" Pack="true" PackagePath="\" />
<None Include="..\..\docs\static\img\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="[1.*,2.0.0)" />
<PackageReference Include="Azure.Storage.Files.Shares" Version="[12.*,13.0.0)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Arcus.Testing.Core\Arcus.Testing.Core.csproj" />
</ItemGroup>
</Project>