-
Notifications
You must be signed in to change notification settings - Fork 331
Expand file tree
/
Copy pathFanoutSearch.csproj
More file actions
57 lines (50 loc) · 2.62 KB
/
FanoutSearch.csproj
File metadata and controls
57 lines (50 loc) · 2.62 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
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>$(DOTNET_PACKAGE_VERSION)</Version>
<FileVersion>$(DOTNET_PACKAGE_VERSION)</FileVersion>
<AssemblyVersion>$(DOTNET_PACKAGE_VERSION)</AssemblyVersion>
<PackageVersion>$(DOTNET_PACKAGE_VERSION)</PackageVersion>
<Authors>Microsoft Graph Engine Team</Authors>
<Company>Microsoft Corporation</Company>
<Description>LIKQ -- the Language Integrated Knowledge Query on top of Microsoft Graph Engine.</Description>
<Copyright>Copyright 2022</Copyright>
<PackageTags>Graph Engine Trinity LIKQ Query Traversal</PackageTags>
<PackageProjectUrl>https://www.graphengine.io</PackageProjectUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>logo-64x64.png</PackageIcon>
<PackageId>GraphEngine.LIKQ</PackageId>
<AssemblyName>GraphEngine.LIKQ</AssemblyName>
<RootNamespace>GraphEngine.LIKQ</RootNamespace>
<NoWarn>CS1668,CS0612,CA2013</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\..\..\LICENSE.txt" Pack="true" PackagePath="LICENSE.txt"/>
<None Include="..\..\..\..\resources\logo-64x64.png" Pack="true" PackagePath="logo-64x64.png"/>
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='net8.0'">
<DefineConstants>NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<ItemGroup>
<TslCodeGen Include="TSL\Core.tsl"></TslCodeGen>
<TslCodeGen Include="TSL\Module.tsl"></TslCodeGen>
<TslCodeGen Include="TSL\Result.tsl"></TslCodeGen>
<TslCodeGen Include="TSL\Web.tsl"></TslCodeGen>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.6.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.6.1" />
<PackageReference Include="Serialize.Linq" Version="1.7.0" />
<PackageReference Include="GraphEngine.Core" Version="$(DOTNET_PACKAGE_VERSION)" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='net8.0'">
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="2.0.0" />
<PackageReference Include="System.Runtime" Version="4.3.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
<PackageReference Include="System.Runtime.Caching" Version="7.0.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>
</Project>