-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.csproj
33 lines (33 loc) · 1.22 KB
/
scripts.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
31
32
33
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net481</TargetFramework>
<Configurations>Output</Configurations>
<RootNamespace>StorybrewScripts</RootNamespace>
<AssemblyName>storyboard</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>AnyCPU;x86</Platforms>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<BaseOutputPath>..\..\cache\bin\</BaseOutputPath>
<BaseIntermediateOutputPath>..\..\cache\obj\</BaseIntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Output|AnyCPU' ">
<PlatformTarget>AnyCPU;x86</PlatformTarget>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Reference Include="OpenTK">
<HintPath>..\..\OpenTK.dll</HintPath>
</Reference>
<Reference Include="BrewLib">
<HintPath>..\..\BrewLib.dll</HintPath>
</Reference>
<Reference Include="StorybrewCommon">
<HintPath>..\..\StorybrewCommon.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup />
</Project>