-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathBasicCacheOperations.csproj
More file actions
28 lines (26 loc) · 1006 Bytes
/
BasicCacheOperations.csproj
File metadata and controls
28 lines (26 loc) · 1006 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputPath>bin\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Alachisoft.NCache.SDK" Version="5.3.1" />
</ItemGroup>
<ItemGroup>
<None Update="client.ncconf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="config.ncconf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="tls.ncconf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>