-
Notifications
You must be signed in to change notification settings - Fork 0
/
GlobalCompileSettings.Targets
55 lines (41 loc) · 1.81 KB
/
GlobalCompileSettings.Targets
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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Globals">
<SccProjectName>SAK</SccProjectName>
<SccProvider>SAK</SccProvider>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)\LICENSE" Pack="true" PackagePath="" />
<None Include="$(SolutionDir)\README.md" Pack="true" PackagePath="" />
</ItemGroup>
<PropertyGroup>
<Version>1.0</Version>
<AssemblyVersion>1.0</AssemblyVersion>
<LangVersion>12.0</LangVersion>
<PackageProjectUrl>https://github.com/xtremlyred/promise</PackageProjectUrl>
<RepositoryUrl>https://github.com/xtremlyred/promise</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<OutputPath>$(SolutionDir)\src\..\bin\$(Platform)\$(Configuration)</OutputPath>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>$(SolutionDir)\Promise.snk</AssemblyOriginatorKeyFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<!--usage-->
<!--Uninstall the project that requires synchronized path generation, edit the project file, and add the following code snippet at the bottom of the project file-->
<!--<Import Project="$(SolutionDir)\GlobalCompileSettings.Targets" />-->
</Project>