1- <?xml version =" 1.0" encoding =" utf-8" ?>
2- <Project ToolsVersion =" 14.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3- <Import Project =" $(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition =" Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4- <PropertyGroup >
5- <Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6- <Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
7- <ProjectGuid >{D488ED8A-1B48-40F9-A4C0-4B82C9B8D945}</ProjectGuid >
8- <OutputType >Library</OutputType >
9- <AppDesignerFolder >Properties</AppDesignerFolder >
10- <RootNamespace >PSEverything</RootNamespace >
11- <AssemblyName >PSEverything</AssemblyName >
12- <TargetFrameworkVersion >v4.5</TargetFrameworkVersion >
13- <FileAlignment >512</FileAlignment >
14- </PropertyGroup >
15- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
16- <DebugSymbols >true</DebugSymbols >
17- <DebugType >full</DebugType >
18- <Optimize >false</Optimize >
19- <OutputPath >bin\Debug\</OutputPath >
20- <DefineConstants >DEBUG;TRACE</DefineConstants >
21- <ErrorReport >prompt</ErrorReport >
22- <WarningLevel >4</WarningLevel >
23- </PropertyGroup >
24- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
25- <DebugType >pdbonly</DebugType >
26- <Optimize >true</Optimize >
27- <OutputPath >bin\Release\</OutputPath >
28- <DefineConstants >TRACE</DefineConstants >
29- <ErrorReport >prompt</ErrorReport >
30- <WarningLevel >4</WarningLevel >
31- </PropertyGroup >
32- <ItemGroup >
33- <Reference Include =" Microsoft.PowerShell.Commands.Utility, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" >
34- <SpecificVersion >False</SpecificVersion >
35- <HintPath >C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.PowerShell.Commands.Utility\v4.0_3.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Commands.Utility.dll</HintPath >
36- </Reference >
37- <Reference Include =" System" />
38- <Reference Include =" System.Core" />
39- <Reference Include =" System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" >
40- <HintPath >..\packages\Microsoft.PowerShell.5.ReferenceAssemblies.1.0.0\lib\net4\System.Management.Automation.dll</HintPath >
41- <Private >True</Private >
42- </Reference >
43- <Reference Include =" System.Xml.Linq" />
44- <Reference Include =" System.Data.DataSetExtensions" />
45- <Reference Include =" Microsoft.CSharp" />
46- <Reference Include =" System.Data" />
47- <Reference Include =" System.Xml" />
48- </ItemGroup >
49- <ItemGroup >
50- <Compile Include =" ArgumentCompleter.cs" />
51- <Compile Include =" Everything.cs" />
52- <Compile Include =" NativeMethods32.cs" />
53- <Compile Include =" NativeMethods64.cs" />
54- <Compile Include =" Properties\AssemblyInfo.cs" />
55- <Compile Include =" SearchEverythingCommand.cs" />
56- <Compile Include =" SelectEverythingStringCommand.cs" />
57- </ItemGroup >
58- <ItemGroup >
59- <Content Include =" PSEverything.dll-Help.xml" >
60- <SubType >Designer</SubType >
61- </Content >
62- </ItemGroup >
63- <ItemGroup >
64- <Content Include =" PSEverything.psd1" />
65- </ItemGroup >
66- <ItemGroup >
67- <Content Include =" ..\LICENSE" >
68- <Link >LICENSE</Link >
69- </Content >
70- </ItemGroup >
71- <ItemGroup >
72- <Content Include =" dll\Everything*.dll" >
73- <Link >%(Filename)%(Extension)</Link >
74- <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
75- </Content >
76- </ItemGroup >
77- <ItemGroup >
78- <None Include =" packages.config" />
79- </ItemGroup >
80- <Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
81- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
82- Other similar extension points exist, see Microsoft.Common.targets.
83- <Target Name="BeforeBuild">
84- </Target>
1+ <Project Sdk =" Microsoft.NET.Sdk" >
852
86- -->
87- <Target Name =" AfterBuild" >
88- <ItemGroup >
89- <ModuleFiles Include =" $(TargetPath)" />
90- <ModuleFiles Include =" @(Content)" />
91- </ItemGroup >
923 <PropertyGroup >
93- <ModuleDir >$(TargetDir)\PSEverything</ModuleDir >
4+ <TargetFramework >netstandard2.0</TargetFramework >
5+ <PackageId >PSEverything</PackageId >
6+ <Version >3.1.0</Version >
7+ <Authors >Powercode</Authors >
8+ <Product >PSEverything</Product >
9+ <Description >Blazingly fast file searches with voidtools Everything</Description >
10+ <PackageLicenseUrl >https://raw.githubusercontent.com/powercode/PSEverything/master/LICENSE</PackageLicenseUrl >
11+ <PackageProjectUrl >https://github.com/powercode/PSEverything</PackageProjectUrl >
12+ <RepositoryUrl >https://github.com/powercode/PSEverything</RepositoryUrl >
13+ <RepositoryType >git</RepositoryType >
9414 </PropertyGroup >
95- <MakeDir Directories =" $(ModuleDir)" />
96- <Copy SourceFiles =" @(ModuleFiles)" DestinationFolder =" $(ModuleDir)" SkipUnchangedFiles =" true" />
97- </Target >
98- </Project >
15+
16+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
17+ <LangVersion >latest</LangVersion >
18+ </PropertyGroup >
19+
20+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
21+ <LangVersion >latest</LangVersion >
22+ </PropertyGroup >
23+
24+ <ItemGroup >
25+ <PackageReference Include =" PowerShellStandard.Library" Version =" 5.1.0-preview-01" />
26+ </ItemGroup >
27+
28+ <ItemGroup >
29+ <Content Include =" ..\LICENSE" >
30+ <Link >LICENSE</Link >
31+ <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
32+ </Content >
33+ <Content Include =" PSEverything.psd1;PSEverything.dll-Help.xml" >
34+ <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
35+ </Content >
36+ </ItemGroup >
37+ <ItemGroup >
38+ <Content Include =" dll\Everything*.dll" >
39+ <Link >%(Filename)%(Extension)</Link >
40+ <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
41+ </Content >
42+ </ItemGroup >
43+ <ItemGroup >
44+ <Folder Include =" Properties\" />
45+ </ItemGroup >
46+
47+ <Target Name =" AfterBuild" >
48+ <ItemGroup >
49+ <ModuleFiles Include =" $(TargetPath)" />
50+ <ModuleFiles Include =" @(Content)" />
51+ </ItemGroup >
52+ <PropertyGroup >
53+ <ModuleDir >$(TargetDir)\PSEverything</ModuleDir >
54+ </PropertyGroup >
55+ <MakeDir Directories =" $(ModuleDir)" />
56+ <Copy SourceFiles =" @(ModuleFiles)" DestinationFolder =" $(ModuleDir)" SkipUnchangedFiles =" true" />
57+ </Target >
58+ </Project >
0 commit comments