forked from aers/FFXIVClientStructs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFFXIVClientStructs.InteropSourceGenerators.csproj
32 lines (27 loc) · 1.25 KB
/
FFXIVClientStructs.InteropSourceGenerators.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<CopyLocalLockfileAssemblies>true</CopyLocalLockfileAssemblies>
<Nullable>enable</Nullable>
<IsRoslynComponent>true</IsRoslynComponent>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.4.0" PrivateAssets="all" />
<PackageReference Include="PolySharp" Version="1.8.1" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<!-- Generator dependencies -->
<PackageReference Include="LanguageExt.Core" Version="4.4.0" GeneratePathProperty="true" PrivateAssets="all" />
</ItemGroup>
<PropertyGroup>
<GetTargetPathDependsOn>$(GetTargetPathDependsOn);GetDependencyTargetPaths</GetTargetPathDependsOn>
</PropertyGroup>
<Target Name="GetDependencyTargetPaths">
<ItemGroup>
<TargetPathWithTargetPlatformMoniker Include="$(PKGLanguageExt_Core)\lib\netstandard2.0\LanguageExt.Core.dll" IncludeRuntimeDependency="false" />
</ItemGroup>
</Target>
</Project>