-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContentstack.SampleConsole.csproj
More file actions
29 lines (24 loc) · 979 Bytes
/
Contentstack.SampleConsole.csproj
File metadata and controls
29 lines (24 loc) · 979 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
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Contentstack.SampleConsole</RootNamespace>
<IsPackable>false</IsPackable>
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="contentstack.csharp" Version="2.25.2" />
</ItemGroup>
<ItemGroup>
<None Update="App.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="CopyAppConfigToOutput" AfterTargets="Build">
<Copy SourceFiles="App.config" DestinationFiles="$(OutputPath)$(AssemblyName).dll.config" SkipUnchangedFiles="true" />
</Target>
</Project>