-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathScriptHandlers.Options.csproj
More file actions
31 lines (26 loc) · 939 Bytes
/
Copy pathScriptHandlers.Options.csproj
File metadata and controls
31 lines (26 loc) · 939 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
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<Company>TSLab</Company>
<Product>TSLab</Product>
<Authors>TSLab</Authors>
<AssemblyName>TSLab.Script.Handlers.Options</AssemblyName>
<RootNamespace>TSLab.Script.Handlers.Options</RootNamespace>
<Version>3.0.0.0</Version>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Description>TSLab handlers for options trading</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="TSLab.Script.Handlers" Version="3.0.0" />
</ItemGroup>
</Project>