-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathShiftCloneEffectPlugin.csproj
More file actions
54 lines (47 loc) · 1.71 KB
/
ShiftCloneEffectPlugin.csproj
File metadata and controls
54 lines (47 loc) · 1.71 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<Reference Include="SharpGen.Runtime">
<HintPath>..\SharpGen.Runtime.dll</HintPath>
</Reference>
<Reference Include="Vortice.Direct2D1">
<HintPath>..\Vortice.Direct2D1.dll</HintPath>
</Reference>
<Reference Include="Vortice.DirectX">
<HintPath>..\Vortice.DirectX.dll</HintPath>
</Reference>
<Reference Include="Vortice.Mathematics">
<HintPath>..\Vortice.Mathematics.dll</HintPath>
</Reference>
<Reference Include="YukkuriMovieMaker.Controls">
<HintPath>..\YukkuriMovieMaker.Controls.dll</HintPath>
</Reference>
<Reference Include="YukkuriMovieMaker.Plugin">
<HintPath>..\YukkuriMovieMaker.Plugin.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>