Skip to content

Commit f977363

Browse files
committed
Update Compiler Version
1 parent 00776c2 commit f977363

File tree

5 files changed

+30
-5
lines changed

5 files changed

+30
-5
lines changed

Files UWP/FilesUWP.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,11 @@
299299
<PackageReference Include="Microsoft.AppCenter.Crashes">
300300
<Version>2.1.1</Version>
301301
</PackageReference>
302+
<PackageReference Include="Microsoft.Net.Compilers">
303+
<Version>3.3.1</Version>
304+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
305+
<PrivateAssets>all</PrivateAssets>
306+
</PackageReference>
302307
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
303308
<Version>6.2.9</Version>
304309
</PackageReference>

Files UWP/ProHome.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ private void RibbonTip_Loaded(object sender, RoutedEventArgs e)
917917
{
918918
if (ApplicationData.Current.LocalSettings.Values["HasBeenWelcomed"] == null)
919919
{
920-
this.RibbonTeachingTip.IsOpen = true;
920+
this.RibbonTeachingTip.IsOpen = false;
921921
ApplicationData.Current.LocalSettings.Values["HasBeenWelcomed"] = true;
922922
}
923923
else

FilesUwp.Package/FilesUwp.Package.wapproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,17 @@
4848
<DefaultLanguage>en-US</DefaultLanguage>
4949
<PackageCertificateKeyFile>FilesUwp.Package_StoreKey.pfx</PackageCertificateKeyFile>
5050
<EntryPointProjectUniqueName>..\Files UWP\FilesUWP.csproj</EntryPointProjectUniqueName>
51-
<PackageCertificateThumbprint>54A40DE81C61BD87FE34D0B18BAE38926F2D7292</PackageCertificateThumbprint>
5251
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
5352
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
54-
<AppInstallerUpdateFrequency>1</AppInstallerUpdateFrequency>
53+
<AppInstallerUpdateFrequency>0</AppInstallerUpdateFrequency>
5554
<AppInstallerCheckForUpdateFrequency>OnApplicationRun</AppInstallerCheckForUpdateFrequency>
56-
<AppxPackageDir>C:\builds\store</AppxPackageDir>
55+
<AppxPackageDir>C:\Users\lukeb\Documents\build\</AppxPackageDir>
5756
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
58-
<AppxBundlePlatforms>x86|x64|arm|arm64</AppxBundlePlatforms>
57+
<AppxBundlePlatforms>x86|x64|arm</AppxBundlePlatforms>
58+
<AppxPackageSigningEnabled>False</AppxPackageSigningEnabled>
59+
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
60+
<GenerateTestArtifacts>True</GenerateTestArtifacts>
61+
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
5962
</PropertyGroup>
6063
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
6164
<AppxBundle>Always</AppxBundle>

ProcessLauncher/ProcessLauncher.csproj

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\packages\Microsoft.Net.Compilers.3.3.1\build\Microsoft.Net.Compilers.props" Condition="Exists('..\packages\Microsoft.Net.Compilers.3.3.1\build\Microsoft.Net.Compilers.props')" />
34
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -12,6 +13,8 @@
1213
<FileAlignment>512</FileAlignment>
1314
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1415
<Deterministic>true</Deterministic>
16+
<NuGetPackageImportStamp>
17+
</NuGetPackageImportStamp>
1518
</PropertyGroup>
1619
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1720
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -35,6 +38,9 @@
3538
<ItemGroup>
3639
<Reference Include="System" />
3740
<Reference Include="System.Core" />
41+
<Reference Include="System.Runtime" />
42+
<Reference Include="System.Runtime.InteropServices" />
43+
<Reference Include="System.Threading.Thread" />
3844
<Reference Include="System.Xml.Linq" />
3945
<Reference Include="System.Data.DataSetExtensions" />
4046
<Reference Include="Microsoft.CSharp" />
@@ -51,6 +57,13 @@
5157
</ItemGroup>
5258
<ItemGroup>
5359
<None Include="App.config" />
60+
<None Include="packages.config" />
5461
</ItemGroup>
5562
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
63+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
64+
<PropertyGroup>
65+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
66+
</PropertyGroup>
67+
<Error Condition="!Exists('..\packages\Microsoft.Net.Compilers.3.3.1\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Net.Compilers.3.3.1\build\Microsoft.Net.Compilers.props'))" />
68+
</Target>
5669
</Project>

ProcessLauncher/packages.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Microsoft.Net.Compilers" version="3.3.1" targetFramework="net472" developmentDependency="true" />
4+
</packages>

0 commit comments

Comments
 (0)