-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLlamaFS.csproj
30 lines (24 loc) · 1023 Bytes
/
LlamaFS.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>LlamaFS</AssemblyName>
<LangVersion>latest</LangVersion>
<RootNamespace>LlamaFS</RootNamespace>
<nullable>Enable</nullable>
<Version>2.0.0</Version>
</PropertyGroup>
<PropertyGroup>
<OutputPath>./bin/Flowerful</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<!-- make all references non-private, so they won't be copied to the output folder -->
<Target Name="ClearReferenceCopyLocalPaths" AfterTargets="ResolveAssemblyReferences">
<ItemGroup>
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" />
</ItemGroup>
</Target>
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2"
PrivateAssets="all" />
</ItemGroup>
</Project>