-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathGraphODataTemplateWriter.Test.csproj
More file actions
27 lines (27 loc) · 1.04 KB
/
GraphODataTemplateWriter.Test.csproj
File metadata and controls
27 lines (27 loc) · 1.04 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\src\GraphODataTemplateWriter\GraphODataTemplateWriter.csproj" />
<ProjectReference Include="..\submodules\vipr\src\Core\Vipr.Core\Vipr.Core.csproj" />
<ProjectReference Include="..\submodules\vipr\src\Readers\Vipr.Reader.OData.v4\Vipr.Reader.OData.v4.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="Edmx\Containment.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="MSTest.TestAdapter">
<Version>3.8.3</Version>
</PackageReference>
<PackageReference Include="MSTest.TestFramework">
<Version>3.8.3</Version>
</PackageReference>
</ItemGroup>
</Project>