-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathCalamari.Scripting.csproj
More file actions
28 lines (26 loc) · 1.08 KB
/
Calamari.Scripting.csproj
File metadata and controls
28 lines (26 loc) · 1.08 KB
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>
<AssemblyName>Calamari.Scripting</AssemblyName>
<RootNamespace>Calamari.Scripting</RootNamespace>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64;linux-arm;linux-arm64</RuntimeIdentifiers>
<IsPackable>true</IsPackable>
<TargetFramework>net10.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Content Include="DotnetScript/*.*">
<LinkBase>DotnetScript</LinkBase>
<Pack>true</Pack>
<Visible>false</Visible>
<PackagePath>contentFiles/any/any/DotnetScript/</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
<PackageFlatten>false</PackageFlatten>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Calamari.Common\Calamari.Common.csproj" />
</ItemGroup>
</Project>