-
Notifications
You must be signed in to change notification settings - Fork 1
/
2022.csproj
91 lines (91 loc) · 4.36 KB
/
2022.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
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
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<BaseOutputPath>.out</BaseOutputPath>
<BaseIntermediateOutputPath>.tmp</BaseIntermediateOutputPath>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<DebugSymbols>true</DebugSymbols>
<DefineConstants>DEBUG</DefineConstants>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>.out\2022\Debug\x64\</OutputPath>
<IntermediateOutputPath>.tmp\2022\Debug\x64\</IntermediateOutputPath>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<OutputPath>.out\2022\Release\x64\</OutputPath>
<IntermediateOutputPath>.tmp\2022\Release\x64\</IntermediateOutputPath>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
<ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProjectGuid>{E1F897D4-0453-460E-993C-40C9C8018F45}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>RunCommandOnSave</RootNamespace>
<AssemblyName>RunCommandOnSave</AssemblyName>
<GeneratePkgDefFile>true</GeneratePkgDefFile>
<UseCodebase>true</UseCodebase>
<IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
<IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer>
<IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
<CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
<CopyOutputSymbolsToOutputDirectory>true</CopyOutputSymbolsToOutputDirectory>
<StartAction>Program</StartAction>
<StartProgram Condition="'$(DevEnvDir)' != ''">$(DevEnvDir)devenv.exe</StartProgram>
<StartArguments>/rootsuffix Exp /LOG</StartArguments>
</PropertyGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Src\CommonDefinitions.cs" />
<Compile Include="Src\Events.cs" />
<Compile Include="Src\IniReader.cs" />
<Compile Include="Src\Package.cs" />
<Compile Include="Src\Settings.cs" />
<Compile Include="Src\SettingsCache.cs" />
<Content Include="LICENSE">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="Resources\Icon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<None Include="source.extension.vsixmanifest" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<PackageReference Include="Community.VisualStudio.Toolkit.17" Version="17.0.451" ExcludeAssets="Runtime" />
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.2.32505.173" ExcludeAssets="Runtime" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup>
<PreBuildEvent>
rmdir "$(ProjectDir)\tmp" /Q /S >nul 2>&1
rmdir "$(ProjectDir)\out" /Q /S >nul 2>&1
copy "$(ProjectDir)\2022.manifest" "$(ProjectDir)\source.extension.vsixmanifest" >nul 2>&1
</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>
rmdir "$(ProjectDir)\tmp" /Q /S >nul 2>&1
rmdir "$(ProjectDir)\out" /Q /S >nul 2>&1
del "$(ProjectDir)\source.extension.vsixmanifest" >nul 2>&1
</PostBuildEvent>
</PropertyGroup>
</Project>