forked from Dyvinia/IncrementalSavePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIncrementalSavePlugin.csproj
More file actions
79 lines (71 loc) · 3.25 KB
/
IncrementalSavePlugin.csproj
File metadata and controls
79 lines (71 loc) · 3.25 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<Configurations>Developer - Debug;Release - Alpha;Release - Beta;Release - Final</Configurations>
<Platforms>x64</Platforms>
<TargetFrameworks>net48</TargetFrameworks>
<AssemblyTitle>BlankPlugin</AssemblyTitle>
<Product>IncrementalSavePlugin</Product>
<Copyright>Copyright © 2021</Copyright>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<UseWPF>true</UseWPF>
<OutputType>Library</OutputType>
<Authors>IncrementalSavePlugin</Authors>
<Company />
<AssemblyName>IncrementalSavePlugin</AssemblyName>
<RootNamespace>IncrementalSavePlugin</RootNamespace>
<PathMap>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))=$(MSBuildProjectName)\</PathMap>
<DebugType>embedded</DebugType>
<LangVersion>12</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Developer - Debug|x64' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Developer\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release - Alpha|x64' ">
<OutputPath>bin\Release\Alpha\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release - Beta|x64'">
<OutputPath>bin\Release\Beta\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release - Final|x64'">
<OutputPath>bin\Release\Final\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FrostyToolsuite\FrostyControls\FrostyControls.csproj">
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="..\FrostyToolsuite\FrostyPlugin\FrostyCore.csproj">
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="..\FrostyToolsuite\FrostySdk\FrostySdk.csproj">
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="..\FrostyToolsuite\FrostyEditor\FrostyEditor.csproj">
<Private>false</Private>
</ProjectReference>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\FrostyToolsuite\FrostyEditor\ThirdParty\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xaml" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<Resource Include="Images\SaveInc.png" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy /Y "$(TargetPath)" "$(SolutionDir)$(OutDir)Plugins\"" />
</Target>
</Project>